GitLab搭建詳細過程
一、前提
- 系統:Centos 6.5
- 軟件版本:gitlab-7.8.4
- Selinux:關閉
- 防火墻規則:先清空(搭建好了後續自己添加相關放行規則)
二、yum源配置和相關依賴包
1.添加epel源和PUIAS_6_computational源
1 |
# yum -y install epel-release
|
創建該文件並添加以下內容:
1 2 3 4 5 6 7 |
# vim /etc/yum.repos.d/PUIAS_6_computational.repo
[PUIAS_6_computational]
name=PUIAS computational Base $releasever - $basearch mirrorlist=http: //puias .math.ias.edu /data/puias/computational/ $releasever/$basearch /mirrorlist
#baseurl=http://puias.math.ias.edu/data/puias/computational/$releasever/$basearch
gpgcheck=1
gpgkey= file : ///etc/pki/rpm-gpg/RPM-GPG-KEY-puias
|
獲取和導入相關驗證文件
1 2 3 |
# wget -O /etc/pki/rpm-gpg/RPM-GPG-KEY-puias http://springdale.math.ias.edu/data/puias/6/x86_64/os/RPM-GPG-KEY-puias # rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-puias
# yum repolist
|
2.安裝依賴包
1 2 3 4 5 6 7 |
# yum install -y vim lrzsz wget gcc gcc-c++ make makeconf cmake
# yum -y update
# yum -y groupinstall ‘Development Tools‘
# yum -y install readline readline-devel ncurses-devel gdbm-devel glibc-devel tcl-devel openssl-devel curl-devel expat-devel db4-devel byacc sqlite-devel libyaml libyaml-devel libffi libffi-devel libxml2 libxml2-devel libxslt libxslt-devel libicu libicu-devel system-config-firewall-tui redis sudo wget crontabs logwatch logrotate perl-Time-HiRes git cmake libcom_err-devel.i686 libcom_err-devel.x86_64 nodejs cmake libicu-devel libicu openssl openssl-devel 查看安裝的git版本,需要1.7.12以上,有PUIAS源會裝1.8
# git --version
|
三、安裝Ruby
1.查看是否安裝有Ruby
1 |
# rpm -qa | grep ruby
|
2.安裝Ruby
1 2 3 4 5 6 |
# mkdir /tmp/ruby && cd /tmp/ruby
# curl --progress ftp://ftp.ruby-lang.org/pub/ruby/2.1/ruby-2.1.2.tar.gz | tar xz
# cd ruby-2.1.2
# ./configure --disable-install-rdoc
# make
# make prefix=/usr/local install
|
3.安裝Bundler Gem
1 |
# gem install bundler --no-doc
|
可能會報以下錯誤,這是因為國內網絡導致rubygems.org存放在Amazon S3上面的資源文件間接性鏈接失敗,用國內的RubyGems鏡像(參見http://ruby.taobao.org/)替換官方鏡像
更換鏡像地址:
1 2 |
# gem sources --remove https://rubygems.org/ # 刪除原鏡像地址
# gem sources -a https://ruby.taobao.org/ # 添加新鏡像地址
|
查看是否更換成功:
再次安裝:
四、創建系統用戶git
1 2 3 4 5 6 7 8 9 10 11 |
# adduser --system --shell /bin/bash --comment ‘GitLab‘ --create-home --home-dir /home/git/ git
讓git用戶可以找到 /usr/local/bin 命令,並可以使用 sudo
# visudo
找到這一行:
Defaults secure_path = /sbin : /bin : /usr/sbin : /usr/bin
在後面添加 /usr/local/bin :
Defaults secure_path = /sbin : /bin : /usr/sbin : /usr/bin : /usr/local/bin
再找到這一行:
root ALL=(ALL) ALL
在下一行添加:
git ALL=(ALL) ALL
|
五、安裝MySQL
1.前提
這裏的數據庫需要安裝Mysql 5.5以上的版本,而epel源默認只有5.1,所以需要添加有Mysql 5.5的源
1 2 3 4 5 |
# rpm -qa | grep mysql # 查看是否安裝比較低版本的mysql,然後卸載
# yum remove -y mysql*
# yum install -y mysql55-server mysql55-devel mysql55 postfix # 安裝5.5版本
# chkconfig mysqld on # 設置開機啟動
# service mysqld start
|
要求是InnoDB引擎,登陸查看是否為InnoDB引擎
如果不是可以用SET storage_engine=INNODB設置,或者修改my.cnf文件後重啟mysql
2.配置GitLab使用的數據庫
1 2 3 4 5 |
> CREATE DATABASE IF NOT EXISTS `gitlabhq_production` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`;
> GRANT SELECT, LOCK TABLES, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER ON `gitlabhq_production`.* TO ‘git‘ @ ‘localhost‘ identified by ‘git‘ ;
> GRANT SELECT, LOCK TABLES, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER ON `gitlabhq_production`.* TO ‘git‘ @ ‘127.0.0.1‘ identified by ‘git‘ ;
> flush privileges;
> exit ;
|
六、安裝Redis
安裝Reids
1 2 3 |
# yum -y install redis
# chkconfig redis on
# cp /etc/redis.conf /etc/redis.conf.orig
|
下面這條命令會把redis.conf的端口設置為0,而redis.conf.orig不變
1 2 3 |
# sed ‘s/^port .*/port 0/‘ /etc/redis.conf.orig | sudo tee /etc/redis.conf
# echo ‘unixsocket /var/run/redis/redis.sock‘ | sudo tee -a /etc/redis.conf
# echo -e ‘unixsocketperm 0770‘ | sudo tee -a /etc/redis.conf
|
授權/var/run/redis給redis權限
1 2 3 |
# mkdir -p /var/run/redis/
# chown redis:redis /var/run/redis
# chmod 755 /var/run/redis
|
將git加入redis組,並啟動Redis
1 2 |
# usermod -aG redis git
# service redis start
|
七、安裝GitLab
1.克隆GitLab
1 2 3 |
# su - git
# cd /home/git
# git clone https://gitlab.com/larryli/gitlab.git -b 7-8-zh gitlab
|
2.配置
切換至GitLab目錄下面,復制一份配置文件
1 2 |
# cd gitlab
# cp config/gitlab.yml.example config/gitlab.yml
|
確保GitLab可以對 log 和 tmp 目錄有寫入權限
1 2 3 4 |
# chown -R git log/
# chown -R git tmp/
# chmod -R u+rwX log/
# chmod -R u+rwX tmp/
|
為satelites創建目錄
1 2 |
# mkdir /home/git/gitlab-satellites
# chmod u+rwx,g=rx,o-rwx /home/git/gitlab-satellites
|
確保GitLab可以對 tmp/pids、tmp/sockets、public/uploads目錄有寫入權限
1 2 3 |
# chmod -R u+rwX tmp/pids/
# chmod -R u+rwX tmp/sockets/
# chmod -R u+rwX public/uploads
|
從配置案例復制一份unicorn配置文件,並修改配置文件中的timeout選項的值為600(防止倉庫文件太大,拉取時間過長出現超時)
1 2 3 4 5 |
# su -
# cd /home/git/gitlab
# sudo -u git -H cp config/unicorn.rb.example config/unicorn.rb
# vim gitlab/config/unicorn.rb
修改timeout 600
|
從配置案例復制一份rack attack配置文件
1 |
# sudo -u git -H cp config/initializers/rack_attack.rb.example config/initializers/rack_attack.rb
|
為git用戶配置git全局配置
1 2 3 |
# sudo -u git -H git config --global user.name "GitLab"
# sudo -u git -H git config --global user.email "[email protected]"
# sudo -u git -H git config --global core.autocrlf input
|
配置redis連接
1 |
# sudo -u git -H cp config/resque.yml.example config/resque.yml
|
配置GitLab數據庫設置
1 2 |
# sudo -u git cp config/database.yml.mysql config/database.yml
# vim config/database.yml
|
只需配置生產的部分(第一部分),用戶名和密碼
配置好以後運行該命令
1 |
# sudo -u git -H chmod o-rwx config/database.yml
|
配置GitLab綁定的域名或者IP
1 2 3 |
# vim config/gitlab.yml
修改host為gitlab的域名為你主機的IP地址(有兩項, test 一項應該沒有影響,不過也修改吧)
host:主機IP
|
安裝Gems
1 |
# sudo -u git -H bundle install --deployment --without development test postgres aws
|
可能會報錯,還是大陸訪問官網的問題,替換成https://ruby.taobao.org,然後再安裝
替換命令:
1 |
# sed -i ‘/^source/s/https\:\/\/rubygems\.org/https\:\/\/ruby\.taobao\.org/‘ Gemfile
|
安裝GitLab shell
1 |
# sudo -u git -H bundle exec rake gitlab:shell:install[v2.5.4] REDIS_URL=unix:/var/run/redis/redis.sock RAILS_ENV=production
|
初始化數據庫
1 |
# sudo -u git -H bundle exec rake gitlab:setup RAILS_ENV=production
|
如果想要自己設置GitLab的root默認登陸密碼則運行以下命令:
1 |
# sudo -u git -H bundle exec rake gitlab:setup RAILS_ENV=production GITLAB_ROOT_PASSWORD=yourpassword
|
默認登陸賬號密碼
1 2 |
login.........root
password......5iveL!fe
|
配置啟動腳本
1 |
# cp lib/support/init.d/gitlab /etc/init.d/
|
配置日誌切割
1 |
# cp lib/support/logrotate/gitlab /etc/logrotate.d/gitlab
|
運行命令檢測GitLab和它的環境是否正確
1 |
# sudo -u git -H bundle exec rake gitlab:env:info RAILS_ENV=production
|
運行命令結果截圖如下:
拉取GitLab靜態資源文件
1 |
# sudo -u git -H bundle exec rake assets:precompile RAILS_ENV=production
|
修改配置文件的gitlab_url為主機IP或者域名
1 |
# vim /home/git/gitlab-shell/config.yml
|
啟動GitLab實例
1 |
# service gitlab start
|
八、配置Nginx
安裝和配置開機啟動(這裏用yum安裝,也可以自己編譯安裝)
1 2 |
# yum install -y nginx
# chkconfig nginx on
|
下載Nginx配置文件,並命名為gitlab.conf
1 |
# wget -O /etc/nginx/conf.d/gitlab.conf https://gitlab.com/gitlab-org/gitlab-ce/raw/master/lib/support/nginx/gitlab
|
把nginx加入到git組
1 2 |
# usermod -a -G git nginx
# chmod g+rx /home/git/
|
修改gitlab.conf文件
1 2 3 4 5 |
# vim /etc/nginx/conf.d/gitlab.conf
server unix: /home/git/gitlab/tmp/sockets/gitlab-workhorse .socket fail_timeout=0; 修改為 server unix: /home/git/gitlab/tmp/sockets/gitlab .socket fail_timeout=0;
listen 0.0.0.0:80 default_server; 修改為 listen 80;
listen [::]:80 default_server; 該行刪除
server_name YOUR_SERVER_FQDN; 修改為 server_name 主機IP
|
啟動Nginx
1 |
# service nginx start
|
九、訪問
訪問地址,http://主機IP或者域名,第一次登陸後就需要修改root用戶的密碼,然後再去掉GitLab的用戶註冊功能。到此GitLab搭建完畢!
centos 6.5安裝GitLab全過程和問題記錄
Linux運用 4年前 (2013-12-26) 58385瀏覽 47評論GitLab,是一個使用 Ruby on Rails 開發的開源應用程序,與Github類似,能夠瀏覽源代碼,管理缺陷和註釋,非常適合在團隊內部使用。
官方只提供了Debian/Ubuntu系統下的安裝說明文檔,如果需要在centos下安裝,可以參考這篇:https://github.com/gitlabhq/gitlab-recipes/tree/master/install/centos,筆者依照這篇文章的說明,成功的在centos系統上安裝了gitlab,分享一下自己的安裝過程和碰到的問題。
安裝的英文文檔:centos-6-5-install-gitlab.zip
先秀下安裝完成後的成果。
開始之前
在開始之前請先查看官方的剛需文檔: https://github.com/gitlabhq/gitlabhq/blob/master/doc/install/requirements.md ,該文檔說明了系統,軟件和硬件等各方面的需求。詳細的了解這些,可以避免碰到很多怪異的問題。
安裝步驟總覽
- 基礎操作系統(CentOS 6.4 Minimal,升級後為6.5)
- Ruby (版本: 2.0.0p353)
- 創建項目運行用戶(創建git賬號,方便權限管理)
- GitLab Shell(版本:1.8.0)
- 數據庫(可以支持mysql和PostgreSQL,這裏使用mysql,版本:5.1.17)
- GitLab(版本:6.3.1)
- Web服務器(可支持nginx和apache,這裏使用nginx,版本:1.0.15)
- 防火墻(iptables)
1、安裝操作系統
這個比較簡單,安裝完成之後記的配置下網絡,使其可以在啟動時自動連接。而後需要升級系統和安裝一些相應的軟件和依賴包,以下逐一說明。
Tips:如果不能連接國外的網絡,經常出現網絡錯誤或者couldn’t not resolve host這樣的錯誤,建議修改dns服務器為8.8.8.8和8.8.4.4。
a、升級操作系統和安裝wget
$ sudo yum -y update $ sudo yum -y install wget
升級完成後,系統版本是6.5。
筆者註:和英文文檔不同,筆者這裏是先升級系統和安裝wget,不然後面的操作會提示wget命令找到。
b、增加EPEL安裝源
EPEL,即Extra Packages for Enterprise Linux,這個軟件倉庫裏有很多非常常用的軟件,而且是專門針對RHEL設計的,對RHEL標準yum源是一個很好的補充,完全免費使用,由Fedora項目維護,所以如果你使用的是RHEL,或者CentOS,Scientific等RHEL系的linux,可以非常放心的使用EPEL的yum源。
下載並安裝GPG key
$ sudo wget -O /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6 https://www.fedoraproject.org/static/0608B895.txt $ sudo rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6
檢驗下是否安裝成功
$ sudo rpm -qa gpg*
安裝epel-release-6-8.noarch包
$ sudo rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
提示:不要在意x86_64,在i686的機器上一樣能使用。
c、增加PUIAS安裝源
PUIAS Linux是面向桌面和服務器的完整的操作系統,它靠編譯Red Hat Enterprise Linux的源代碼包來創建。除了這些上遊的軟件包外,該項目還提供一些其他的軟件倉庫:“Addons”包含了通常的Red Hat發行中未收入的額外軟件包,“Computational”提供專門針對科學計算的軟件,“Unsupported”則收入各種各樣的測試性軟件 包。該發行由美國普林斯頓 大學的高等研究所維護。
創建/etc/yum.repos.d/PUIAS_6_computational.repo,並添加如下內容:
[PUIAS_6_computational] name=PUIAS computational Base $releasever - $basearch mirrorlist=http://puias.math.ias.edu/data/puias/computational/$releasever/$basearch/mirrorlist #baseurl=http://puias.math.ias.edu/data/puias/computational/$releasever/$basearch gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-puias
下載並安裝GPG key
$ sudo wget -O /etc/pki/rpm-gpg/RPM-GPG-KEY-puias http://springdale.math.ias.edu/data/puias/6/x86_64/os/RPM-GPG-KEY-puias $ sudo rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-puias
檢驗下是否安裝成功
$ sudo rpm -qa gpg*
Tips:安裝完EPEL和PUIAS兩個源後,可以檢測下:
$ sudo yum repolist
d、安裝GitLab的所需依賴包和工具
$ su - $ yum -y groupinstall ‘Development Tools‘ $ yum -y install vim-enhanced readline readline-devel ncurses-devel gdbm-devel glibc-devel tcl-devel openssl-devel curl-devel expat-devel db4-devel byacc sqlite-devel gcc-c++ libyaml libyaml-devel libffi libffi-devel libxml2 libxml2-devel libxslt libxslt-devel libicu libicu-devel system-config-firewall-tui python-devel redis sudo wget crontabs logwatch logrotate perl-Time-HiRes git
RHEL提示
如果部分包不能安裝,例如: eg. gdbm-devel, libffi-devel and libicu-devel,那麽增加rhel6的安裝源。
$ yum-config-manager --enable rhel-6-server-optional-rpms
e、配置redis
配置redis使其在開機時啟動:
$ sudo chkconfig redis on $ sudo service redis start
f、配置郵件服務器
筆者註:這個過程筆者沒有配置,請參考英文文檔。
2、安裝Ruby
下載並編譯:
$ su - $ mkdir /tmp/ruby && cd /tmp/ruby $ curl --progress ftp://ftp.ruby-lang.org/pub/ruby/2.0/ruby-2.0.0-p353.tar.gz | tar xz $ cd ruby-2.0.0-p353 $ ./configure --prefix=/usr/local/ $ make && make install
安裝完成後,重新登錄終端確保$PATH生效,檢測ruby的安裝成功與否:
$ which ruby /usr/local/bin/ruby $ ruby -v ruby 2.0.0p353 (2013-11-22 revision 43784) [x86_64-linux]
安裝bundle:
$ sudo gem install bundler --no-ri --no-rdoc
如果提示sudo: gem: command not found,使用root賬號登錄執行該命令即可。
3、系統用戶
創建用戶git
$ su - $ adduser --system --shell /bin/bash --comment ‘GitLab‘ --create-home --home-dir /home/git/ git
因為git用戶不需要登錄,所以這裏不需要設置git的密碼。
轉發所有郵件
筆者註:因為上面沒有配置發送郵件,這裏也省略。
4、配置GitLab shell
GitLab shell是專門為GitLab開發的提供ssh訪問和版本管理的軟件。
先使用root登錄,而後切換成git
$ su - $ su - git
克隆gitlab shell
$ git clone https://github.com/gitlabhq/gitlab-shell.git $ cd gitlab-shell
切換成1.8.0版本,並編輯配置
$ git checkout v1.8.0 $ cp config.yml.example config.yml
這裏最重要的是將gitlab_url修改成gitlab的訪問域名。形如:http://test.gitlab.com/
筆者註:如果gitlab是使用https訪問,則需將http替換成https,配置文件中的self_signed_cert要修改成true,否則gitlab shell在通過api和gitlab進行通信的時候就會出現錯誤,導致項目push出錯。因為後面配置web服務器的時候是使用ssl,所以這裏要按照ssl的方式配置。
Tips: 另外如果使用的域名是測試域名,不要忘記在系統的/etc/hosts做域名映射。
安裝一些需要的目錄和文件
$ ./bin/install
5、安裝數據庫
筆者這裏使用的是msyql,關於PostgreSQL的安裝請參考原文檔。
安裝mysql並設置開機啟動:
$ su - $ yum install -y mysql-server mysql-devel $ chkconfig mysqld on $ service mysqld start
設置mysql root賬號的密碼:
$ /usr/bin/mysql_secure_installation
創建新用戶和數據庫給gitlab使用
# 登錄數據庫 $ mysql -u root -p # 輸入root密碼 # 為gitlab創建使用用戶 CREATE USER ‘gitlab‘@‘localhost‘ IDENTIFIED BY ‘gitlab賬號的密碼‘; # 創建gitlaba使用的數據庫 CREATE DATABASE IF NOT EXISTS `gitlabhq_production` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`; # 給予gitlab用戶權限 GRANT SELECT, LOCK TABLES, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER ON `gitlabhq_production`.* TO ‘gitlab‘@‘localhost‘; # 登出數據庫 \q
6、安裝GitLab
將GitLab安裝在git的家目錄下:
$ su - $ su - git
a、克隆GitLab並切換分支到6-3-stable
# 克隆GitLab $ git clone https://github.com/gitlabhq/gitlabhq.git gitlab # 進入gitlab目錄 $ cd /home/git/gitlab # 切換到6-3-stable分支 $ git checkout 6-3-stable
b、配置項目
# 復制配置文件 $ cp config/gitlab.yml.example config/gitlab.yml # 修改配置文件中的訪問域名 (your_domain_name為項目的訪問域名) $ sed -i ‘s|localhost|your_domain_name|g‘ config/gitlab.yml # 設定log和tmp目錄所有者和權限 $ chown -R git log/ $ chown -R git tmp/ $ chmod -R u+rwX log/ $ chmod -R u+rwX tmp/ # 創建gitlab-satellites目錄 $ mkdir /home/git/gitlab-satellites # 創建tmp/pids/和tmp/sockets/目錄,確保gitlab有相應的權限 $ mkdir tmp/pids/ $ mkdir tmp/sockets/ $ chmod -R u+rwX tmp/pids/ $ chmod -R u+rwX tmp/sockets/ # 創建public/uploads目錄 $ mkdir public/uploads $ chmod -R u+rwX public/uploads # 復制unicorn配置 $ cp config/unicorn.rb.example config/unicorn.rb # 編輯unicorn配置 (筆者這裏采用默認配置) $ vim config/unicorn.rb # 配置git的用戶和郵件 $ git config --global user.name "GitLab" $ git config --global user.email "gitlab@your_domain_name" $ git config --global core.autocrlf input
這邊的配置比較復雜,細心些就行了。
c、配置數據庫訪問文件
$ cp config/database.yml.mysql config/database.yml
編輯config/database.yml,設置其中連接數據庫的賬號密碼,筆者的配置部分如下:
# # PRODUCTION # production: adapter: mysql2 encoding: utf8 reconnect: false database: gitlabhq_production pool: 10 username: gitlab password: "gitlab" # host: localhost # socket: /tmp/mysql.sock
修改其中username和password就可以了,其中密碼就是上面數據庫步驟中創建gitlab用戶的密碼。
確保該文件只有git賬號有權限讀取。
$ chmod o-rwx config/database.yml
d、安裝Gems
$ su - $ gem install charlock_holmes --version ‘0.6.9.4‘ $ exit
安裝mysql包
$ cd /home/git/gitlab/ $ bundle install --deployment --without development test postgres puma aws
e、初始化數據和激活高級功能
$ cd /home/git/gitlab $ bundle exec rake gitlab:setup RAILS_ENV=production
這步完成後,會生一個默認的管理員賬號:
[email protected] 5iveL!fe
f、安裝啟動腳本
$ su - $ wget -O /etc/init.d/gitlab https://raw.github.com/gitlabhq/gitlab-recipes/master/init/sysvinit/centos/gitlab-unicorn $ chmod +x /etc/init.d/gitlab $ chkconfig --add gitlab
開機時啟動
$ chkconfig gitlab on
g、檢測應用程序狀態
$ su - git $ cd gitlab/ $ bundle exec rake gitlab:env:info RAILS_ENV=production $ exit
可以查看到系統、Ruby、GitLab和GitLab Shell的版本和其他信息。
啟動GitLab實例
$ service gitlab start
h、查看應用更加詳細的信息
$ su - git $ cd gitlab/ $ bundle exec rake gitlab:check RAILS_ENV=production
這裏會提示一個Init script up-to-date的錯誤,如下:
Init script up-to-date? ... no Try fixing it: Redownload the init script For more information see: doc/install/installation.md in section "Install Init Script" Please fix the error above and rerun the checks.
原文說明不用介意這個問題。
7、安裝web服務器
筆者選擇的是nginx,關於apache方面的請參考原文檔
$ su - $ yum -y install nginx $ chkconfig nginx on $ mkdir /etc/nginx/sites-available $ mkdir /etc/nginx/sites-enabled $ wget -O /etc/nginx/sites-available/gitlab https://raw.github.com/gitlabhq/gitlab-recipes/master/web-server/nginx/gitlab-ssl $ ln -sf /etc/nginx/sites-available/gitlab /etc/nginx/sites-enabled/gitlab
編輯/etc/nginx/nginx.conf,將 include /etc/nginx/conf.d/*.conf; 替換成 include /etc/nginx/sites-enabled/*;,就是修改額外加載的配置文件目錄。
編輯/etc/nginx/sites-available/gitlab,將配置中server_name替換成實際訪問的域名。
將nginx加入git用戶組
$ usermod -a -G git nginx $ chmod g+rx /home/git/
添加ssl證書或者自己生成一個
$ cd /etc/nginx $ openssl req -new -x509 -nodes -days 3560 -out gitlab.crt -keyout gitlab.key
啟動nginx
$ service nginx start
8、配置防火墻
配置iptables,使用戶可以訪問http、https和ssh的端口。
$ lokkit -s http -s https -s ssh
重新啟動防火墻
$ service iptables restart
至此就算安裝完成了。默認的賬號密碼:
[email protected] 5iveL!fe
問題記錄
a、網站不能添加用戶和創建項目問題?
查了下日誌,發現是權限的問題:
Errno::EACCES (Permission denied – /home/git/gitlab/log/application.log):
修改用戶和所屬用戶組為git就可以了。
b、無法push?
在上面安裝GitLab shell步驟時,一開始筆者是將配置中的gitlab_url設置成http://test.gitlab.com/,結果在push的時候出錯了,後來查看GitLab項目日誌,才發現GitLab shell和GitLab通信的時候產生了一個301跳轉。這點通過GitLab的nginx配置也能看的出來。後來將http替換成https,self_signed_cert設置成true就OK了。
總結
安裝的過程比較長,其中大部分時間花在了包的下載上。筆者以前沒有接觸過ruby,安裝的過程中也了解了下Ruby、Gem、Bundle等軟件,受益匪淺。一般來講,照著上面的步驟安裝,如果系統,軟件等版本都一致的話,應該能成功安裝。如果出現問題,可以多查查日誌。GitLab項目的日誌在該項目的log目錄內。GitLab shell的日誌在GitLab shell項目中的gitlab-shell.log
感謝
在安裝的過程中多虧了朋友雷誌偉的幫忙,少走了不少彎路。此外他現在正在漢化GitLab,英文不好的朋友有福了,有興趣的朋友也可以參與進來,也可以直接使用已經漢化好的文件,地址:http://git.oschina.net/linxuix/Git-Lab-Zh。
GitLab搭建詳細過程