git
孙正嗯大正
Java开发
展开
-
gitlab服务器基本命令
防火墙systemctl stop firewalld.service #停止firewallsystemctl disable firewalld.service #禁止firewall开机启动sudo systemctl status firewalld ##查看防火墙状态,是否是runningsudo lsof -i:9090 #查看占用的端口号Netstat -an | grep 9090 #查看端口号:yum install lsof #安原创 2021-06-30 15:26:10 · 5111 阅读 · 5 评论 -
gitlab服务器设置定时备份
手动备份:gitlab-rake gitlab:backups:create定时备份:sudo vim /etc/crontab重启crond服务sudo systemctl restart crond当前停止gitlab服务,然后重启sudo gitlab-ctl stopshutdown -r now设置定时清理即可sudo vim /etc/gitlab/gitlab.rb gitlab_rails['manage_backup_path'] = true原创 2021-06-30 15:13:02 · 4603 阅读 · 4 评论 -
gitlab搭建
查看和安装插件1.首先我们查看防火墙是否开启##查看防火墙状态,是否是runningsudo systemctl status firewalld 2.安装插件方便我们查看端口:##安装netstat:yum install net-tools##查看端口号:Netstat -an | grep 9090 ##安装lsof:yum install lsof##查看端口号: sudo lsof -i :8080安装服务1.1 安装SSH协议#安装SSH服务命令sudo原创 2021-06-30 15:05:10 · 4523 阅读 · 2 评论