CentOS 7.2安装gitlab-ce

时间:2023-03-09 16:59:09
CentOS 7.2安装gitlab-ce

国内网络原因,gitlab-ce安装包可以在清华大学开源网站镜像站下载:https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/

[root@gitlab ~]# mkdir -p /opt/
[root@gitlab ~]# cd /opt/

#上传安装包
[root@gitlab opt]# rz -E
rz waiting to receive.
[root@gitlab opt]# ll
total 346604
-rw-r--r-- 1 root root 354921173 Sep 14 15:08 gitlab-ce-9.3.0-ce.0.el7.x86_64.rpm
[root@gitlab opt]#

#安装gitlab-ce
[root@gitlab opt]# rpm -ivh gitlab-ce-9.3.0-ce.0.el7.x86_64.rpm

CentOS 7.2安装gitlab-ce

#初始化gitlab
[root@gitlab opt]# gitlab-ctl reconfigure

...省略初始化输出信息...

Running handlers:
Running handlers complete
Chef Client finished, 359/515 resources updated in 02 minutes 59 seconds
gitlab Reconfigured!
[root@gitlab opt]#

#浏览器访问http://ip

CentOS 7.2安装gitlab-ce

#第一次登陆要求修改root密码,修改密码后重新登陆

CentOS 7.2安装gitlab-ce