Centos7.8安装Gitlab
公司为了合规性考虑,需要自己搭建私有化版的github。那不用想,肯定要上GitLab了。
项目背景:
服务器:华为云ECS,需要上公网,并在安全组打开80端口访问。
用户:关闭公开注册,新建用户后,手动改密码,不用安装邮件服务。
步骤:
1. 安装gitlab-ce仓库和安装包
curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
2.安装GitLab
2.1 信任gitlab公钥
curl https://packages.gitlab.com/gpg.key 2> /dev/null | sudo apt-key add - &>/dev/null
2.2 使用清华大学镜像
vim /etc/yum.repos.d/gitlab-ce.repo
添加如下内容:
[gitlab-ce]
name=Gitlab CE Repository
baseurl=https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el$releasever/
gpgcheck=0 enabled=1
2.3 缓存服务器的包信息
yum makecache
2.4 开整!
sudo EXTERNAL_URL="http://****" yum install -y gitlab-ce
EXTERNAL_URL后面为域名或者主机
3. 访问
使用之前的EXTERNAL_UR访问,账号和密码在这里:
4. 其他
4.1 gitlab配置文件
/etc/gitlab/gitlab.rb
4.2 如修改配置文件后,重载配置:gitlab-ctl reconfigure
重启:gitlab-ctl restart
4.3 开机启动:systemctl enable gitlab-runsvdir.service
禁止开机启动:systemctl disable gitlab-runsvdir.service
4.4 卸载
sudo gitlab-ctl stop
sudo rpm -e gitlab-ce
ps aux | grep gitlab 查看进程,杀掉第一个守护进程
find / -name gitlab | xargs rm -rf 删除所有包含gitlab文件