gitlab 常用命令自查表
gitlab# 查看当前gitlab版本号cat /opt/gitlab/embedded/service/gitlab-rails/VERSION# 查看gitlab配置文件vim /etc/gitlab/gitlab.rb#运行配置文件gitlab-ctl reconfigure# 重启gitlabgitlab-ctl restart# 其他gitlab-ctl startgitlab-ctl
·
gitlab
# 查看当前gitlab版本号
cat /opt/gitlab/embedded/service/gitlab-rails/VERSION
# 查看gitlab配置文件
vim /etc/gitlab/gitlab.rb
#运行配置文件
gitlab-ctl reconfigure
# 重启gitlab
gitlab-ctl restart
# 其他
gitlab-ctl start
gitlab-ctl stop
- 版本升级 gitlab 不允许直接升级,需要参考 官方升级路线
- gitlab 502报错 - 添加unicorn端口号
external_url 'http://10.10.10.249:7777'
unicorn['port'] = 8182
- gitlab 汉化
gitlab 汉化
gitlab 定时备份
/***************第一步************************/
crontab工具执行自动备份
vim /etc/crontab // 查看crontab 文件
// 设置凌晨2点自动备份
0 2 * * * root /opt/gitlab/bin/gitlab-rake gitlab:backup:create CRON=1
/*************第二步***********************/
// 打开gitlab配置文件
vim /etc/gitlab/gitlab.rb
// 文件内设置命令
### back gitlab_rails['manage_backup_path']=true #管理备份路径
gitlab_rails['backup_path'] = '/gitlab/backups' #路径地址
gitlab_rails['backup_archive_permissions']=0644 #权限存档 gitlab_rails['backup_keep_time']=7776000 #备份保存时间:3个月
/*************第三步***重启********************/
gitlab-ctl reconfigure
systemctl restart crond
/**************手动备份*******************************/
gitlab-rake gitlab:backup:create
frp穿透
frpc.ini 配置文件
[common]
server_addr = www.abc.com
server_port = 7000
[gitssh]
type = tcp
local_ip = 10.10.10.249
local_port = 22
remote_port = 20021
[gitweb]
type = http
local_ip = 10.10.10.249
local_port = 7777
remote_port = 20020
custom_domains = www.abc.com
启动frpc.ini
./frpc -c ./frpc.ini
后期维护自查
进入girlab
docker exec -it gitlab_13.12.15 /bin/bash
备份
gitlab-rake gitlab:backup:create
查找
find / -name 1645442127_2022_02_21_13.12.15_g
迁移
mv 1695277008_2023_09_21_13.12.15_gitlab_backup.tar /home/gitlab/gitlab_backups
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
已为社区贡献1条内容
所有评论(0)