CentOS 7 安装Gitlab

Posted by Dayong Chan on 2019-09-08
Words 236 and Reading Time 1 Minutes
Viewed Times

一、安装

1.1安装依赖

script
1
2
3
yum install postfix
service postfix start
chkconfig postfix on

1.2 添加仓库

script
1
curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash

1.3 安装

script
1
EXTERNAL_URL="http://gitlab.example.com" yum -y install gitlab-ce

EXTERNAL_URL后面的地址为自己Git仓库的地址,注意要修改。
默认会安装最新版本的Gitlab,完成后访问Gitlab设置管理员的密码

二、常用操作

2.1 提示正在部署,服务暂停

script
1
gitlab-ctl deploy-page up | down

2.2 更新Gitlab

script
1
gitlab-ctl upgrade

2.3 重新配置

script
1
gitlab-ctl reconfigure

2.4 线上配置

script
1
gitlab-ctl show-config

2.5 启动、查看状态、停止服务

script
1
gitlab-ctl start | status | stop

2.6 查看日志

script
1
gitlab-ctl tail

2.7 备份内容

script
1
gitlab-rake gitlab:backup:create

2.8 恢复备份的内容

script
1
gitlab-rake gitlab:backup:restore BACKUP=备份的文件

PS:恢复之前必须要把服务先停掉

2.9 检查恢复的情况

script
1
gitlab-rake gitlab:check SANITIZE=true

2.10 卸载

script
1
gitlab-ctl uninstall

本站版权使用署名-非商业性使用-禁止演绎 4.0 国际,转载请保留原文链接及作者。