Ubuntu18.04安装GitLab搭建私有仓库服务器过程笔记
sudo apt-get update sudo apt-get install -y curl openssh-server ca-certificates
sudo apt-get install -y postfix
curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ee/script.deb.sh | sudo bash
sudo EXTERNAL_URL="http://47.109.141.79:7000" apt-get install gitlab-ee
复制 http://47.109.141.79:7000打开浏览器浏览并配置,如果第一次使用将会重定向到密码重置的页面,提供初始的账号密码
文档详细说明在安装和配置传送门:https://docs.gitlab.com/omnibus/README.html#installation-and-configuration-using-omnibus-package
第二种方式
sudo apt-get update
sudo apt-get install curl openssh-server ca-certificates postfix
注:执行完成后,出现邮件配置,选择Internet那一项(不带Smarthost的)与第一种安装一致
2、利用清华大学的镜像(https://mirror.tuna.tsinghua.edu.cn/help/gitlab-ce/)来进行主程序的安装
curl https://packages.gitlab.com/gpg.key 2> /dev/null | sudo apt-key add - &>/dev/null
vi /etc/apt/sources.list.d/gitlab-ce.list
出现一个空的文本在里面添加如下内容,ESC+:wq 保存并退出
deb https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/ubuntu xenial main
3、 安装GitLab-Ce
安装包比较大但是下载速度相对比较快
sudo apt-get update sudo apt-get install gitlab-ce
4、设置访问链接
修改为ip+端口,如果有域名修改为自己的域名+端口
vi /etc/gitlab/gitlab.rb
5、启动各项服务服务
sudo gitlab-ctl reconfigure
6、查看状态
sudo gitlab-ctl status
至此第二种安装方式安装完成,安装完成后记得开放端口~以及云服务器的安全组设置,不然无法访问这里就不赘述端口开放内容了
7、开始进行界面配置
文档详细说明在安装和配置传送门:https://docs.gitlab.com/omnibus/README.html#installation-and-configuration-using-omnibus-package
第一次打开页面需要重置root用户的密码,初始化完成后重新登录