gitlab部署
gitlab部署
1.关闭防火墙
systemctl stop firewalld
2.关闭selinux
setenforce 0
3.配置gitlab yum源(使用清华源安装)
vi /etc/yum.repos.d/gitlab-ce.repo
[gitlab-ce]
name=gitlab-ce
baseurl=https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/
gpgcheck=0
enabled=1
4.加载yum源配置
yum clean all && yum makecache
5.安装gitlab(gitlab-ce是社区版,gitlab-ee是企业版,是收费的)
yum -y install gitlab-ce
6.编辑gitlab配置文件
vi /etc/gitlab/gitlab.rb
7.启动gitlab服务(第一次启动gitlab服务需要较长时间)
gitlab-ctl reconfigure
8.查看gitlab服务
netstat -tlpn
除了9000端口的服务外,gitlab还启用了很多其它的服务
9.配置初始化密码
/opt/gitlab/bin/gitlab-rails console -e production
u=User.where(id:1).first #查找账户
u.password='12345678' #配置密码
u.password_confirmation='12345678' #再次确认配置密码
u.save! #保存配置
exit #退出
10.登录gitlab web界面
11.关闭自行注册功能
12.GitLab常用命令
gitlab-ctl start #启动gitlab服务
gitlab-ctl stop #停止gitlab服务
gitlab-ctl status #查看gitlab服务状态
gitlab-ctl restart #重启gitlab服务
gitlab-ctl reconfigure #重载配置文件
gitlab-ctl tail #查看gitlab服务所有日志
systemctl enable gitlab-runsvdir.service #开机自启动gitlab服务
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
所有评论(0)