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 status
02.
run: alertmanager: (pid 17521) 10s; run: log: (pid 17195) 80s
03.
run: gitaly: (pid 17410) 12s; run: log: (pid 16619) 190s
04.
run: gitlab-exporter: (pid 17418) 12s; run: log: (pid 17011) 100s
05.
run: gitlab-workhorse: (pid 17385) 13s; run: log: (pid 16906) 117s
06.
run: grafana: (pid 17540) 9s; run: log: (pid 17344) 29s
07.
run: logrotate: (pid 16427) 205s; run: log: (pid 16438) 204s
08.
run: nginx: (pid 16940) 113s; run: log: (pid 16973) 110s
09.
run: node-exporter: (pid 17398) 13s; run: log: (pid 16997) 104s
10.
run: postgres-exporter: (pid 17532) 9s; run: log: (pid 17222) 74s
11.
run: postgresql: (pid 16654) 187s; run: log: (pid 16672) 186s
12.
run: prometheus: (pid 17503) 11s; run: log: (pid 17154) 88s
13.
run: puma: (pid 16844) 131s; run: log: (pid 16851) 130s
14.
run: redis: (pid 16460) 199s; run: log: (pid 16481) 196s
15.
run: redis-exporter: (pid 17420) 12s; run: log: (pid 17133) 92s
16.
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 console
02.
u=User.all #查看所有用户
03.
u=User.where(id:1).first #切换到指定用户
04.
u.password='admin123' #重置密码
05.
u.password_confirmation='admin123' #再次确认密码
06.
u.save! #最后保存设置
07.
quit #退出

2021-07-29_00-54.png

然后我们再去网页上面登陆试试
2021-07-29_00-59.png

看起来是没有问题了

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

相关推荐