网站地图    收藏   

主页 > 系统 > linux系统 >

Debian下GitLab 安装步骤详解 - linux教程

来源:自学PHP网    时间:2014-11-28 23:06 作者: 阅读:

[导读] 博客又是好久不更新了,趁着中秋假期在家学习安装了GitLab,这个折腾啊,然后写个笔记,下次可以参考.基本上参考官方文档:https://github.com/gitlabhq/gitlabhq/blob/master/doc/install/installation......

Debian下GitLab 安装步骤详解

博客又是好久不更新了,趁着中秋假期在家学习安装了GitLab,这个折腾啊,然后写个笔记,下次可以参考.

基本上参考官方文档:https://github.com/gitlabhq/gitlabhq/blob/master/doc/install/installation.md然后有些需要注意的地方做下记录.

一、安装要求

Debian**,MySQL,git,gitlab-shell,redis

二、安装教程

1. 首先需要确定账户可以使用sudo,并更新系统package

# run as root!,apt-get update,apt-get upgrade

apt-get install sudo #正常情况系统都带sudo命令,如果没有的话,手动安装下.

2. 安装一些必要包

sudo apt-get install -y build-essential zlib1g-dev libyaml-dev libssl-dev libgdbm-dev libreadline-dev libncurses5-dev libffi-dev curl openssh-server redis-server checkinstall libxml2-dev libxslt-dev libcurl4-openssl-dev libicu-dev logrotate python-docutils pkg-config cmake

检查Python版本,2.5+ (3.0+还没支持)python --version,如果版本不对,请安装.

sudo apt-get install python2.7

python2 --version

sudo ln -s /usr/bin/python /usr/bin/python2

安装邮件发送支持默认即可.sudo apt-get install -y postfix

3. 安装Ruby这里我们使用taobao的镜像进行安装 可以大大的缩短下载包的时间.

  1. mkdir /tmp/ruby && cd /tmp/ruby 
  2. curl --progress http://ruby.taobao.org/mirrors/ruby/2.1/ruby-2.1.2.tar.gz | tar xz 
  3. cd ruby-2.1.2 
  4. ./configure --disable-install-rdoc 
  5. make 
  6. sudo make install 

Note:请不要使用rvm来安装ruby 可能会因为环境变量导致这样那样的错误,当然如果你能解决这些问题可以使用rvm来安装ruby.

安装bundler 这里我们也使用taobao镜像来缩短下载时间,注意请使用sudo!!

sudo gem sources --remove http://rubygems.org/

sudo gem sources -a http://ruby.taobao.org/

sudo gem install bundler

4.添加Git用户

sudo adduser –disabled-login –gecos ‘GitLab’git

5.安装 GitLab-shell 新版本使用GitLab-shell来代替gitolite.

  1. # Login as git 
  2. sudo su git 
  3. # Go to home directory 
  4. cd /home/git 
  5. # Clone gitlab shell 
  6. git clone https://github.com/gitlabhq/gitlab-shell.git 
  7. cd gitlab-shell 
  8. # switch to right version 
  9. git checkout v1.4.0 
  10. cp config.yml.example config.yml 
  11. # Edit config and replace gitlab_url 
  12. with something like 'http://domain.com/' 
  13. # 这里修改成自己的内部域名 如: http://git.test.com/ 
  14. vim config.yml 
  15. # Do setup 
  16. ./bin/install 

6.安装数据库m推荐MySQL,以下所有操作需要使用可以sudo的账户,代码如下:

  1. # Install the database packages 
  2. sudo apt-get install -y mysql-server mysql-client libmysqlclient-dev 
  3. # Login to MySQL 
  4. mysql -u root -p 
  5. Create a user for GitLab. (change $password to a real password
  6. mysql> CREATE USER 'gitlab'@'localhost' IDENTIFIED BY '123456'
  7. Create the GitLab production database 
  8. mysql> CREATE DATABASE IF NOT EXISTS `gitlabhq_production` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`; 
  9. Grant the GitLab user necessary permissions on the table
  10. mysql> GRANT SELECT, LOCK TABLES, INSERTUPDATEDELETECREATEDROPINDEXALTER ON `gitlabhq_production`.* TO 'gitlab'@'localhost'

7.开始安装GitLab主程序.

  1. ## We'll install GitLab into home directory of the user "git" 
  2. cd /home/git 
  3. # Clone GitLab repository 
  4. sudo -u git -H git clone https://github.com/gitlabhq/gitlabhq.git gitlab 
  5. # Go to gitlab dir 
  6. cd /home/git/gitlab 
  7. # Checkout to stable release 
  8. sudo -u git -H git checkout 7-2-stable 

8.配置GitLab.

  1. # Go to GitLab installation folder 
  2. cd /home/git/gitlab 
  3. # Copy the example GitLab config 
  4. sudo -u git -H cp config/gitlab.yml.example config/gitlab.yml 
  5. # Make sure to change "localhost" to the fully-qualified domain name of your 
  6. # host serving GitLab where necessary 
  7. # 这里仅需要修改host即可, 
  8. sudo -u git -H vim config/gitlab.yml 
  9. # Make sure GitLab can write to the log/ and tmp/ directories 
  10. # 修改账户权限 
  11. sudo chown -R git log/ 
  12. sudo chown -R git tmp/ 
  13. sudo chmod -R u+rwX  log/ 
  14. sudo chmod -R u+rwX  tmp/ 
  15. Create directory for satellites 
  16. sudo -u git -H mkdir /home/git/gitlab-satellites 
  17. sudo chmod u+rwx,g=rx,o-rwx /home/git/gitlab-satellites 
  18. Create directories for sockets/pids and make sure GitLab can write to them 
  19. sudo -u git -H mkdir tmp/pids/ 
  20. sudo -u git -H mkdir tmp/sockets/ 
  21. sudo chmod -R u+rwX  tmp/pids/ 
  22. sudo chmod -R u+rwX  tmp/sockets/ 
  23. Create public/uploads directory otherwise backup will fail 
  24. sudo -u git -H mkdir public/uploads 
  25. sudo chmod -R u+rwX  public/uploads 
  26. # Copy the example Puma config 
  27. sudo -u git -H cp config/puma.rb.example config/puma.rb 
  28. # Copy the example Puma config 
  29. # 该配置文件默认即可 
  30. sudo -u git -H vim config/puma.rb 
  31. #如果没有puma.rb可以用下面的,二选一 
  32. sudo -u git -H cp config/unicorn.rb.example config/unicorn.rb 
  33. sudo -u git -H editor config/unicorn.rb 
  34. # listen "142.23.21.76:8080", :tcp_nopush => true 
  35. # Copy the example Rack attack config 
  36. sudo -u git -H cp config/initializers/rack_attack.rb.example config/initializers/rack_attack.rb 
  37. # Configure Git global settings for git user, useful when editing via web 
  38. # Edit user.email according to what is set in gitlab.yml 
  39. sudo -u git -H git config --global user.name "GitLab" 
  40. sudo -u git -H git config --global user.email "gitlab@localhost" 
  41. sudo -u git -H git config --global core.autocrlf input 
  42. sudo -u git cp config/database.yml.mysql config/database.yml 
  43. # 修改数据库账号密码, 刚才添加过gitlab这个数据库用户 直接修改成该账号即可 
  44. sudo -u git vim config/database.yml 
  45. #数据库密码  只需修改production即可 
  46. #  username: gitlab 
  47. #  password"123456"        
  48. #  host: localhost 

9.安装 Gems.

  1. cd /home/git/gitlab 
  2. sudo gem install charlock_holmes --version '0.6.9.4' 
  3. # 修改Bundle源地址为taobao, 首行改成 source 'http://ruby.taobao.org/' 
  4. sudo -u git vim Gemfile 
  5. # 这个是使用mysql数据库, 这个命令意思是排除postgres 请别搞错 
  6. sudo -u git -H bundle install --deployment --without development test postgres aws 

10.初始化数据库并启用高级功能.

sudo -u git -H bundle exec rake gitlab:setup RAILS_ENV=production

11.安装init脚本

  1. cd /home/git/gitlab 
  2. sudo curl --output /etc/init.d/gitlab https://raw.github.com/gitlabhq/gitlabhq/7-2-stable/lib/support/init.d/gitlab 
  3. cp lib/support/init.d/gitlab /etc/init.d/  
  4. sudo chmod +x /etc/init.d/gitlab 
  5. #设置开机启动GitLab 
  6. sudo update-rc.d gitlab defaults 21 
  7. cd /home/git/gitlab 
  8. cp lib/support/logrotate/gitlab /etc/logrotate.d/gitlab 

12.最后检测一下程序状态

cd gitlab

sudo -u git -H bundle exec rake gitlab:check RAILS_ENV=production

Note:这里可能会告诉你init脚本有问题或者git版本过低, 可以无视

13.启动GitLab

sudo service gitlab start

三、Nginx配置

你可以安装nginx来代理访问GitLab 配置过程如下

1. 安装nginx:

sudo apt-get install nginx

cd /home/git/gitlab

1.增加GitLab配置文件

  1. sudo curl --output /etc/nginx/sites-available/gitlab https://raw.github.com/gitlabhq/gitlabhq/7-2-stable/lib/support/nginx/gitlab 
  2. sudo cp lib/support/nginx/gitlab /etc/nginx/sites-available/ 
  3. sudo ln -s /etc/nginx/sites-available/gitlab /etc/nginx/sites-enabled/gitlab 
  4. # 修改配置文件 Listen 直接监听80端口即可 e.g. listen 80; 
  5. # 修改server_name为你的内部域名 e.g. server_name git.test.com; 
  6. sudo vim /etc/nginx/sites-available/gitlab //phpfensi.com

2.重启nginx

sudo service nginx restart

保存服务器名字的hash表是由指令 server_names_hash_max_size 和 server_names_hash_bucket_size所控制的,参数hash bucket size总是等于hash表的大小,并且是一路处理器缓存大小的倍数,如果Nginx给出需要增大 hash max size 或 hash bucket size的提示,那么首要的是增大前一个参数的大小.

vim /etc/nginx/sites-enabled/gitlab

server_names_hash_bucket_size 64;

sudo service nginx restart

这样你就可以通过nginx来访问gitlab了,默认的账户如下

用户名:admin@local.host

密码: 5iveL!fe

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论