其他分享
首页 > 其他分享> > 虚拟机安装 gitlab

虚拟机安装 gitlab

作者:互联网

根据系统找到对应 gitlab 包:https://packages.gitlab.com/gitlab/gitlab-ce

 

命令行运行命令下载包到本地:

wget --content-disposition https://packages.gitlab.com/gitlab/gitlab-ce/packages/ubuntu/bionic/gitlab-ce_14.9.5-ce.0_amd64.deb/download.deb

 

运行命令安装:

sudo dpkg -i gitlab-ce_14.9.5-ce.0_amd64.deb

结果提示缺少依赖

 

安装相关依赖包:apt install openssh-server

 

尝试使用提示命令安装:apt --fix-broken install

 

一顿下载后,gitlab 直接给安装好了:

 

 。。。也是666

 

 

配置 gitlab,打开 gitlab.rb文件:

vim /etc/gitlab/gitlab.rb

设置ip端口:

 

修改完后要使用命令更新配置:(首次启动会比较慢,配置很多项)

gitlab-ctl reconfigure

 

启动 gitlab:

 

界面访问:http://192.168.111.128:88/(此为虚拟机的虚拟 ip)

 

root 用户,密码在:/etc/gitlab/initial_root_password 位置:

https://blog.csdn.net/timonium/article/details/119451755

 

登录试下:

 

用户下 profile 可以修改密码:

设置8位密码即可~

 

标签:虚拟机,gitlab,ce,https,deb,packages,安装
来源: https://www.cnblogs.com/guofan/p/16348124.html