1、下载gitlib压缩包:gitlab-ce-10.0.2-ce.0.el7.x86_64.rpm
2、将下载的压缩包上传至服务器,一般放在/usr/local/目录下
3、使用命令解压压缩包:
tar -zxvf gitlab-ce-10.0.2-ce.0.el7.x86_64.rpm
4、安装邮件服务
$ yum install -y postfix
$ systemctl enable postfix
$ systemctl start postfix
注释:systemctl是高版本的centeros使用的,如果遇到systemctl not found,则考虑用service命令替换systemctl命令执行:
ervice postfix start
5、配置服务端口
$cd /etc/gitlab/gitlab.rb
修改gitlab.rb中的external_url:
external_url 'http://192.168.1.106:90'
->http://192.168.1.106 是公网地址
->90端口是公网映射端口和gitlab服务启动端口
6、修改 gitlab.yml
7、重新生成配置,每一次修改配置文件,都要执行此操作;
$ gitlab-ctl reconfigure
8、启动服务
9、停止服务
10、获取运行状态
11、获取帮助信息
$ gitlab-ctl start
9、停止服务
$ gitlab-ctl stop
10、获取运行状态
$ gitlab-ctl status
11、获取帮助信息
$ gitlab-ctl --help