GitLab 常用命令

avatar 2022年3月22日18:18:24 评论 2,009 次浏览

基础不牢地动,gitlab在使用的过程中对于常用命令是在后期维护的关键,但是因为不常用,这里就记录一下gitlab在维护中需要用的一些命令,方便后期在使用过程中需要用到的时候能够快速处理。下面是gitlab的常用命令:

  1. # 启动所有 gitlab 组件:
  2. gitlab-ctl start
  3. # 停止所有 gitlab 组件:
  4. gitlab-ctl stop
  5. # 停止 postgresql 组件:
  6. gitlab-ctl stop postgresql
  7. # 停止相关数据连接服务
  8. gitlab-ctl stop unicorn
  9. gitlab-ctl stop sidekiq
  10. # 重启所有 gitlab 组件:
  11. gitlab-ctl restart
  12. # 重启 gitlab-workhorse 组件:
  13. gitlab-ctl restart gitlab-workhorse
  14. # 查看服务状态
  15. gitlab-ctl status

如果更改了主配置文件 [:/etc/gitlab/gitlab.rb 文件],需要用这个命令,使配置文件生效 但是会初始化除了gitlab.rb 之外的所有文件

  1. sudo gitlab-ctl reconfigure
  2. 执行完上面那个命令 重启所有 gitlab 组件
  3. gitlab-ctl restart
  4. 针对某个服务重启 例如重启nginx
  5. gitlab-ctl restart nginx
  6. 针对某个服务启动 例如启动nginx
  7. gitlab-ctl start nginx
  8. 针对某个服务关闭 例如关闭nginx
  9. gitlab-ctl stop nginx
  10. # 查看日志 (查看gitlab整个所有的日志)
  11. sudo gitlab-ctl tail

具体的日志文件路径:

  1. [root@www.wulaoer.org src]# ll /var/log/gitlab/
  2. total 12
  3. drwx------ 2 git root 95 Mar 23 23:27 gitaly
  4. drwx------ 2 git root 95 Mar 23 23:27 gitlab-monitor
  5. drwx------ 2 git root 4096 Mar 28 00:39 gitlab-rails
  6. drwx------ 2 git root 204 Mar 28 00:39 gitlab-shell
  7. drwx------ 2 git root 95 Mar 23 23:27 gitlab-workhorse
  8. drwx------ 2 root root 95 Mar 23 23:27 logrotate
  9. drwxr-x--- 2 root gitlab-www 4096 Mar 28 00:39 nginx
  10. drwx------ 2 gitlab-prometheus root 95 Mar 23 23:27 node-exporter
  11. drwx------ 2 gitlab-psql root 95 Mar 23 23:27 postgres-exporter
  12. drwx------ 2 gitlab-psql root 95 Mar 23 23:27 postgresql
  13. drwx------ 2 gitlab-prometheus root 235 Mar 27 23:27 prometheus
  14. drwxr-xr-x 2 root root 28 Mar 22 23:25 reconfigure
  15. drwx------ 2 gitlab-redis root 235 Mar 27 23:27 redis
  16. drwx------ 2 gitlab-redis root 95 Mar 23 23:27 redis-exporter
  17. drwx------ 2 git root 235 Mar 27 23:27 sidekiq
  18. drwx------ 2 git root 4096 Mar 28 00:39 unicorn

备份gitlab

  1. gitlab-rake gitlab:backup:create
  2. mv /var/opt/gitlab/backups/*.tar /opt/gitlab/backserve/
  3. find /opt/gitlab/backserve/ -type f -mtime +7 -exec rm -f {} \;

这里备份后把备份的文件迁移到其他目录,并对文件定时删除操作即可,这样就可以保留7天的文件了。

avatar

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

滑动解锁才能提交