阿里云Centos8安装GitLab私服

一、 前提准备(阿里云服务器已启动ssh,此步骤已经具有,不需作)python

(1)    安装依赖linux

yum install -y curl policycoreutils-python openssh-servergit

centos8没有policycoreutils-python yum源,不用管centos

(2)    启动ssh并设置为开机自启动服务器

systemctl enable sshdssh

systemctl start sshdcurl

二、 添加http服务到firewalld,pemmanent表示永久生效,若不加--permanent系统下次启动后就会失效tcp

systemctl start firewalldgitlab

firewall-cmd --permanent --add-service=httppost

systemctl reload firewalld

三、 启动postfix,设置邮件服务自启动

yum install policycoreutils-python-utils postfix (注意:系统可能已安装)

systemctl enable postfix

systemctl start postfix

四、 环境和安装包准备(要求当前用户:root)

系统:CentOS-8.2.2004-x86_64-minimal.iso ,安装的是最小化标准版 且 /etc/selinux/config 配置已禁用

下载 gitlab:wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el8/gitlab-ce-13.3.0-ce.1.el8.x86_64.rpm

五、 安装gitlab

rpm -ivh gitlab-ce-13.3.0-ce.1.el8.x86_64.rpm

六、 配置gitlab13

(1)编辑 /etc/gitlab/gitlab.rb 找到 external_url 'http://xxxxxxxx' 改为本身的地址 external_url 'http://192.168.x.x:8489'

    编辑文件详细查看“vi"命令。

(2)添加防火墙端口

firewall-cmd --add-port=8489/tcp --permanent

firewall-cmd –reload

 

(3)从新读取配置

gitlab-ctl reconfigure

注意:此步骤时间比较长,耐心等待,一直到出现下图结束语句。

 

(4)重启服务

gitlab-ctl restart

 

[此处不用执行,做为记录学习。开启:gitlab-ctl start  关闭:gitlab-ctl stop]

七、 成功如图:

 

八、 GitLab修改root密码

第一次登陆须要修改root密码, 密码8位以上,修改完就能够登陆。(如上图)