ubuntu18.04手工部署gitlab实现CICD(一)
- 2021-07-28 00:57:45
- 运维
- 732
- shevechco
首先我们需要安装gitlab,现在官网下载最新的gitlab安装包,我们这次选择的手工下载
01.https://packages.gitlab.com/gitlab/gitlab-ce
具体下载地址
01.wget --content-disposition https://packages.gitlab.com/gitlab/gitlab-ce/packages/ubuntu/bionic/gitlab-ce_14.1.1-ce.0_amd64.deb/download.deb
然后我们进行安装和配置
01.sudo dpkg -i gitlab-ce_14.1.1-ce.0_amd64.deb
gitlab这样就安装好了,但是我们还需要简单配置一下
01.sudo vim /etc/gitlab/gitlab.rb
找到
01.external_url 'http://gitlab.example.com'02.#修改为03.external_url ' # 192.168.122.66是我本机IP
再运行以下命令是配置生效
01.sudo gitlab-ctl reconfigure
然后我们可以看看gitlab是否已经启动
01.sudo gitlab-ctl status02.run: alertmanager: (pid 17521) 10s; run: log: (pid 17195) 80s03.run: gitaly: (pid 17410) 12s; run: log: (pid 16619) 190s04.run: gitlab-exporter: (pid 17418) 12s; run: log: (pid 17011) 100s05.run: gitlab-workhorse: (pid 17385) 13s; run: log: (pid 16906) 117s06.run: grafana: (pid 17540) 9s; run: log: (pid 17344) 29s07.run: logrotate: (pid 16427) 205s; run: log: (pid 16438) 204s08.run: nginx: (pid 16940) 113s; run: log: (pid 16973) 110s09.run: node-exporter: (pid 17398) 13s; run: log: (pid 16997) 104s10.run: postgres-exporter: (pid 17532) 9s; run: log: (pid 17222) 74s11.run: postgresql: (pid 16654) 187s; run: log: (pid 16672) 186s12.run: prometheus: (pid 17503) 11s; run: log: (pid 17154) 88s13.run: puma: (pid 16844) 131s; run: log: (pid 16851) 130s14.run: redis: (pid 16460) 199s; run: log: (pid 16481) 196s15.run: redis-exporter: (pid 17420) 12s; run: log: (pid 17133) 92s16.run: sidekiq: (pid 17315) 40s; run: log: (pid 16876) 122s
这样表示已经启动好了,们就可以访问gitlab的web地址了
01.http://192.168.122.66:7800
第一次进入不知道为什么不能跟以前一样直接重置密码了,那我们来通过命令修改下密码
01.cd /opt/gitlab/bin
进入控制台
01.sudo gitlab-rails console02.u=User.all #查看所有用户03.u=User.where(id:1).first #切换到指定用户04.u.password='admin123' #重置密码05.u.password_confirmation='admin123' #再次确认密码06.u.save! #最后保存设置07.quit #退出
然后我们再去网页上面登陆试试
看起来是没有问题了
gitlab常用命令如下
01.sudo gitlab-ctl stop #停止02.sudo gitlab-ctl start #启动03.sudo gitlab-ctl restar #重启04.sudo gitlab-ctl status #查看状态05.sudo gitlab-ctl reconfigure #重载配置06.sudo gitlab-ctl tail #查看日志07.cat /opt/gitlab/embedded/service/gitlab-rails/VERSION #查看版本号
gitlab安装就到这里了,之前也做过centos版本的安装,可以看看之前的笔记https://sulao.cn/post/277,后面我们接着再安装gitlab-runner做做cicd的最佳实践
内容版权声明:除非注明,否则皆为本站原创文章。
转载注明出处:http://www.sulao.cn/post/793