一、安装
1.1安装依赖
script1 2 3
| yum install postfix service postfix start chkconfig postfix on
|
1.2 添加仓库
script1
| curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
|
1.3 安装
script1
| EXTERNAL_URL="http://gitlab.example.com" yum -y install gitlab-ce
|
EXTERNAL_URL后面的地址为自己Git仓库的地址,注意要修改。
默认会安装最新版本的Gitlab,完成后访问Gitlab设置管理员的密码
二、常用操作
2.1 提示正在部署,服务暂停
script1
| gitlab-ctl deploy-page up | down
|
2.2 更新Gitlab
2.3 重新配置
2.4 线上配置
2.5 启动、查看状态、停止服务
script1
| gitlab-ctl start | status | stop
|
2.6 查看日志
2.7 备份内容
script1
| gitlab-rake gitlab:backup:create
|
2.8 恢复备份的内容
script1
| gitlab-rake gitlab:backup:restore BACKUP=备份的文件
|
PS:恢复之前必须要把服务先停掉
2.9 检查恢复的情况
script1
| gitlab-rake gitlab:check SANITIZE=true
|
2.10 卸载
本站版权使用署名-非商业性使用-禁止演绎 4.0 国际,转载请保留原文链接及作者。