1.第一步下载gitlab包

本次使用包为
gitlab-ce-12.5.0-ce.0.el7.x86_64.rpm
通过winSCP放入根目录
安装流程
1.yum install gitlab-ce-12.5.0-ce.0.el7.x86_64.rpm
2.安装完成 编辑访问路劲 cd /etc/gitlab/gitlab.rb
3.编辑内容 external_url 'http://172.25.83.1' #访问gitlab的地址 可以加端口:8085 注意不要与其他端口冲突
注意:查看端口使用 netstat -ntpl
4.配置完成需要生效 gitlab-ctl reconfigure
5.启动gitlab指令-------- gitlab-ctl reconfigure

gitlab其他指令
gitlab常用命令:

gitlab-ctl start    # 启动所有 gitlab 组件;

gitlab-ctl stop        # 停止所有 gitlab 组件;

gitlab-ctl restart        # 重启所有 gitlab 组件;

gitlab-ctl status        # 查看服务状态;

vim /etc/gitlab/gitlab.rb        # 修改gitlab配置文件;

gitlab-ctl reconfigure        # 重新编译gitlab的配置;

gitlab-rake gitlab:check SANITIZE=true --trace    # 检查gitlab;

gitlab-ctl tail        # 查看日志;

gitlab-ctl tail nginx/gitlab_access.log

cat /opt/gitlab/embedded/service/gitlab-rails/VERSION  #查看gitlab版本

关闭防火墙
在外部访问CentOS中部署应用时,需要关闭防火墙。

关闭防火墙命令:systemctl stop firewalld.service

开启防火墙:systemctl start firewalld.service

关闭开机自启动:systemctl disable firewalld.service

开启开机启动:systemctl enable firewalld.service