1. 安裝依賴軟件
yum -y install policycoreutils openssh-server openssh-clients postfix
vi /etc/postfix/main.cfpython
inet_interfaces = localhostgit
inet_protocols = allvim
改爲:centos
inet_interfaces = allbash
inet_protocols = all服務器
從新啓動ssh
service postfix startgitlab
2.設置postfix開機自啓,並啓動,postfix支持gitlab發信功能
systemctl enable postfix && systemctl start postfix
3.下載gitlab安裝包,而後安裝
centos 6系統的下載地址:https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el6
centos 7系統的下載地址:https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7
個人是centos7,因此我在https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7中找了個gitlab8.0.0版本,建議下載一個比較新的版本,我這裏選了一個比較舊的版本僅僅是實驗記錄。
下載rpm包並安裝:
wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-12.0.1-ce.0.el7.x86_64.rpm
【須要
yum
install
policycoreutils-python
】
rpm -ivh gitlab-ce-12.0.1-ce.0.el7.x86_64.rpm --forcepost
4.修改gitlab配置文件指定服務器ip和自定義端口
vim /etc/gitlab/gitlab.rb
退出並保存
ps:注意這裏設置的端口不能被佔用,默認是8080端口,若是8080已經使用,請自定義其它端口,並在防火牆設置開放相對應得端口。
5.重置並啓動GitLab
執行如下命令
gitlab-ctl reconfigure
gitlab-ctl restart