维护命令

查看状态
sudo gitlab-ctl status

启停


# 启动Gitlab所有组件
sudo gitlab-ctl start

# 停止Gitlab所有组件
sudo gitlab-ctl stop

# 重启Gitlab所有组件
sudo gitlab-ctl restart

备份

备份配置

配置文件再/etc/gitlab/ 下面,将所有的配置用tar备份即可

[root@localhost init.d]# cd /etc/gitlab/
[root@localhost gitlab]# ls
gitlab.rb  gitlab-secrets.json  trusted-certs

备份data (以包安装的方式)

[root@localhost ~]# sudo gitlab-rake gitlab:backup:create
Dumping database ... 
Dumping PostgreSQL database gitlabhq_production ... [DONE]
done
Dumping repositories ...
 * root/test1 ... [DONE]
 * root/test1.wiki ...  [SKIPPED]
done
Dumping uploads ... 
done
Dumping builds ... 
done
Dumping artifacts ... 
done
Dumping pages ... 
done
Dumping lfs objects ... 
done
Dumping container registry images ... 
[DISABLED]
Creating backup archive: 1490183942_2017_03_22_gitlab_backup.tar ... done
Uploading backup archive to remote storage  ... skipped
Deleting tmp directories ... done
done
done
done
done
done
done
done
Deleting old backups ... skipping
[root@localhost ~]# ls -lrt
总用量 288
-rw-r--r--. 1 root root  279608 1114 2014 rlwrap-0.42.tar.gz
-rw-------. 1 root root    1886 117 2016 initial-setup-ks.cfg
-rw-------. 1 root root    1608 118 2016 anaconda-ks.cfg
drwxr-xr-x. 2 root root       6 130 2016 桌面
drwxr-xr-x. 2 root root       6 130 2016 下载
drwxr-xr-x. 2 root root       6 130 2016 模板
drwxr-xr-x. 2 root root       6 130 2016 音乐
drwxr-xr-x. 2 root root       6 130 2016 文档
drwxr-xr-x. 2 root root       6 130 2016 图片
drwxr-xr-x. 2 root root       6 130 2016 视频
drwxr-xr-x. 2 root root      34 923 15:21 公共
drwxr-xr-x. 8 yang users   4096 923 16:12 rlwrap-0.42
[root@localhost ~]# find / -name "1490183942_2017_03_22_gitlab_backup.tar"
find: ‘/proc/23513’: 没有那个文件或目录
/var/opt/gitlab/backups/1490183942_2017_03_22_gitlab_backup.tar

恢复数据 (针对以包安装的方式)


[root@localhost ~]# sudo gitlab-ctl stop unicorn
[root@localhost ~]# sudo gitlab-ctl stop sidekiq
[root@localhost ~]# sudo gitlab-ctl status
[root@localhost ~]# sudo gitlab-rake gitlab:backup:restore BACKUP=1490183942_2017_03_22
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐