參考資料
https://github.com/mattias-ohlsson/gitlab-installer/blob/master/gitlab-install-el6.shhtml
環境準備
OS: CentOS 6.3 x86_64node
1.初識GitLab
GitLab是一個利用 Ruby on Rails 開發的開源應用程序,實現一個自託管的Git項目倉庫,可經過Web界面進行訪問公開的或者私人項目。
它擁有與Github相似的功能,可以瀏覽源代碼,管理缺陷和註釋。能夠管理團隊對倉庫的訪問,它很是易於瀏覽提交過的版本並提供一個文件歷史庫。團隊成員能夠利用內置的簡單聊天程序(Wall)進行交流。它還提供一個代碼片斷收集功能能夠輕鬆實現代碼複用,便於往後有須要的時候進行查找。 mysql
GitLab 要求服務器端採用 Gitolite 搭建,5.0版本之後對於ssh服務,GitLab再也不使用 Gitolite ,採用本身開發的 gitlab-shell 來實現。linux
在GitHub上託管代碼,私人項目是須要付費的,而且對於企業而言,仍是將Git服務器放在內部要更加安全一些。所以,若是喜歡GitHub這種簡潔風格的Git服務器,在本地搭建一個GitLab是一個很是不錯的選擇。
另外,若是須要對代碼進行Review,推薦使用Gerrit,要複雜一些,可是功能很是強大。c++
2.安裝部署GitLab
2.1 若是有條件,提供一臺全新的Server,僅僅只安裝了一些系統的軟件包,能夠直接使用一鍵安裝的腳原本搭建,很是容易,具體步驟以下:git
2.1.1 安裝EPEL擴展源
切換到root用戶
$ sudo -i
# rpm -ivh http://fr2.rpmfind.net/linux/epel/6/x86_64/epel-release-6-8.noarch.rpmgithub
2.1.2 安裝git
# yum install gitredis
2.1.3 下載gitlab-installer.sh安裝腳本
# git clone https://github.com/mattias-ohlsson/gitlab-installer.gitsql
2.1.4 執行安裝腳本
# cd gitlab-installer/
# ./gitlab-install-el6.shshell
等待腳本執行完畢後,會提示以下信息(好比Server主機名爲:heydevops-node-2):
|
### Done ######################################## |
|
# |
|
# You have your MySQL root password in this file: |
|
# /config/database.yml |
|
# |
|
# Point your browser to: |
|
# http://heydevops-node-2 (or: http://[host-ip]) |
|
# Default admin username: admin@local.host |
|
# Default admin password: 5iveL!fe |
| # |
| ################################################# |
2.1.5 將腳本的Ruby版本指向到ruby-1.9.3-p392
# vim /home/git/gitlab-shell/bin/gitlab-shell
|
#!/usr/local/rvm/bin/ruby-1.9.3-p392 |
2.1.6 使用GitLab
接着,就能夠經過 http://[host-ip] ([host-ip]是Server的IP)來訪問GitHub了。
首先,會看到以下所示的登錄界面:
經過上面提示信息內的帳號密碼登錄,登錄事後首先新增一個Project:
添加Project事後,會有一個配置嚮導,提供了很是詳細的本地Git配置步驟:
在進行這些本地配置以前,首先要在本地生成SSH-Keygen,並將Public Key添加到GitLab中:
# ssh-keygen -t rsa
# cat .ssh/id_rsa.pub
而後將所查看到的信息,都添加到GitLab的 MyProfile - SSH Key - Add New 中:
接着,就能夠再本地按照圖片中所示的步驟進行操做並使用GitLab了。
2.2 上面的部署步驟,主要是採用了腳本gitlab-install-el6.sh來實現的,裏面其實包含了不少的配置步驟,若是本地不是一個全新的環境,那麼咱們最好按照如下步驟來進行手動配置:
2.2.1 安裝EPEL擴展源
切換到root用戶
$ sudo -i
# rpm -ivh http://fr2.rpmfind.net/linux/epel/6/x86_64/epel-release-6-8.noarch.rpm
2.2.2 安裝git
# yum install git
2.2.3 安裝系統依賴
# yum -y install patch gcc-c++ readline-devel zlib-devel libffi-devel openssl-devel make autoconf automake libtool bison libxml2-devel libxslt-devel libyaml-devel
2.2.4 安裝rvm
# curl -L get.rvm.io | sudo bash -s stable
# source /etc/profile.d/rvm.sh
# rvm pkg install libyaml
# rvm use 1.9.3-p392
# gem install bundler
2.2.5 建立git用戶
# adduser --system --create-home --comment 'GitLab' git
2.2.6 配置gitlab-shell(好比Server主機名爲:heydevops-node-2)
# su - git -c "git clone https://github.com/gitlabhq/gitlab-shell.git"
# su - git -c "cp gitlab-shell/config.yml.example gitlab-shell/config.yml"
# sed -i "s/localhost/heydevops-node-2/g" /home/git/gitlab-shell/config.yml
# su - git -c "rvm use 1.9.3-p392;gitlab-shell/bin/install"
# chmod 600 /home/git/.ssh/authorized_keys
# chmod 700 /home/git/.ssh
2.2.7 安裝Redis
# yum -y install redis
# service redis start
# chkconfig redis on
2.2.8 安裝配置MySQL
# yum install -y mysql-server
# chkconfig mysqld on
# echo "CREATE DATABASE IF NOT EXISTS gitlabhq_production DEFAULT CHARACTER SET 'utf8' COLLATE 'utf8_unicode_ci';" | mysql -u root
# echo "UPDATE mysql.user SET Password=PASSWORD('gitlab') WHERE User='root'; FLUSH PRIVILEGES;" | mysql -u root
2.2.9 安裝配置GitLab
# su - git -c "git clone https://github.com/gitlabhq/gitlabhq.git gitlab"
# su - git -c "cd gitlab;git checkout 5-0-stable"
# cd /home/git/gitlab
# su git -c "cp config/gitlab.yml.example config/gitlab.yml"
# sed -i "s/ host: localhost/ host: heydevops-node-2/g" config/gitlab.yml
# sed -i "s/from: gitlab@localhost/from: gitlab@heydevops-node-2/g" config/gitlab.yml
2.2.10 建立Unicorn配置文件
# su git -c "cp config/unicorn.rb.example config/unicorn.rb"
# sed -i "s/^listen/#listen/g" /home/git/gitlab/config/unicorn.rb
# sed -i "s/#listen \"127.0.0.1:8080\"/listen \"127.0.0.1:3000\"/g" /home/git/gitlab/config/unicorn.rb
# su git -c "cp config/database.yml.mysql config/database.yml"
# sed -i "s/secure password/gitlab/g" config/database.yml
2.2.10 安裝Gems
# yum -y install libicu-devel
# gem install charlock_holmes --version '0.6.9'
# yum -y install mysql-devel
# su git -c "bundle install --deployment --without development test postgres"
# su git -c "bundle exec rake gitlab:setup RAILS_ENV=production"
# curl --output /etc/init.d/gitlab https://raw.github.com/gitlabhq/gitlab-recipes/master/init.d/gitlab-centos
# chmod +x /etc/init.d/gitlab
# sed -i "17 a source /etc/profile.d/rvm.sh\nrvm use 1.9.3-p392" /etc/init.d/gitlab
# chkconfig gitlab on
# service gitlab start
2.2.11 安裝Apache
# yum -y install httpd
# chkconfig httpd on
# vim /etc/httpd/conf.d/gitlab.conf
| ProxyPass / http://127.0.0.1:3000/ |
| ProxyPa***everse / http://127.0.0.1:3000/ |
| ProxyPreserveHost On |
# setenforce 0
# service httpd start
2.2.12 中止iptables
# service iptables stop
2.2.13 修復gitlab-shell
# vim /home/git/gitlab-shell/bin/gitlab-shell
將腳本的Ruby版本指向到ruby-1.9.3-p392
|
#!/usr/local/rvm/bin/ruby-1.9.3-p392 |
2.2.14 完成,剩下的GitLab使用步驟與2.1.6相同。