在CentOS上安裝GITLAB

方健發表於2014-05-21

在CentOS上安裝GITLAB

為什麼要用gitlab?

方便地管理專案,設定使用者許可權。

參考

  1. https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/README.md

步驟

從 https://www.gitlab.com/downloads/ 下載 GitLab安裝包

sudo yum install openssh-server
sudo yum install postfix # sendmail or exim is also OK
sudo rpm -i gitlab-x.y.z_omnibus-x.el6.x86_64.rpm # this is the .rpm you downloaded
sudo gitlab-ctl reconfigure
sudo lokkit -s http -s ssh # open up the firewall for HTTP and SSH requests

登入

http://192.168.1.203/
使用者名稱: admin@local.host
密碼: 5iveL!fe

常見問題

伺服器重啟以後不能正常工作,重新執行reconfigure可解決:

sudo gitlab-ctl reconfigure

相關文章