1. 程式人生 > >centOS 7 gitlab安裝

centOS 7 gitlab安裝

https://www.cnblogs.com/chenfool/p/7689438.html

配置阿里巴巴 yum 源

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
重建yum 的快取

yum clean all
yum makecache

https://www.cnblogs.com/Gyoung/p/7729095.html

1.開啟系統防火牆 HTTP 和 SSH 的訪問,安裝postfix

複製程式碼
sudo yum install curl policycoreutils policycoreutils
-python openssh-server openssh-clients sudo systemctl enable sshd sudo systemctl start sshd sudo yum install postfix sudo systemctl enable postfix sudo systemctl start postfix sudo firewall-cmd --permanent --add-service=http sudo systemctl reload firewalld 複製程式碼 2.下載gitlab rpm安裝檔案 crul下載: > curl -s https://
packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash > sudo yum install gitlab-ce-10.1.0-ce.0.el7.x86_64 rpm下載 curl -LJO https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-10.1.0-ce.0.el7.x86_64.rpm rpm -i gitlab-ce-10.1.0-ce.0.el7.x86_64.rpm 如果下載失敗,可以到https://packages.gitlab.com/gitlab/gitlab-ce手動下載,再用 rpm的方式自己安裝
出現 It looks like… 表示安裝成功! 3.配置 gitlab vi /etc/gitlab/gitlab.rb 把external_url改成部署機器的域名或者IP地址。 4.對GitLab進行重配置 (這一步也是啟動 GitLab) gitlab-ctl reconfigure

 漢化版的安裝方法參考:https://www.cnblogs.com/chenfool/p/7689438.html

安裝完不要在後臺新增使用者,由使用者自己去註冊頁面註冊,後臺分配許可權就行了,不用配置郵件伺服器。