-
安装依赖
yum -y install policycoreutils-python openssh-server openssh-clients postfix cronie curl
-
下载
gitlab-ce-15.4.2-ce.0.el8.x86_64.rpm
安装包。wget --content-disposition https://packages.gitlab.com/gitlab/gitlab-ce/packages/el/8/gitlab-ce-15.4.2-ce.0.el8.x86_64.rpm/download.rpm
(其他版本的下载链接 https://packages.gitlab.com/gitlab/gitlab-ce ,注意需要下载el8
版本的。)
-
安装gitlab
rpm -ivh gitlab-ce-15.4.2-ce.0.el8.x86_64.rpm
出现如下界面说明安装成功:
- 修改web服务端口
sh
vim /etc/gitlab/gitlab.rb
修改以下字段的ip和端口:
external_url 'http://10.0.0.106:8088'
-
配置生效
gitlab-ctl reconfigure
-
查看用户名密码
cat /etc/gitlab/initial_root_password
-
开放端口
firewall-cmd --permanent --add-port=8088/tcp
firewall-cmd --reload -
访问web端,可以使用root账户登录成功