Ubuntu下搭建GitLab

  1. 1. 安装依赖
  2. 2. 安装GitLab
  3. 3. 浏览器访问
  4. 4. 管理工具:gitlab-ctl

1. 安装依赖

sudo apt-get install -y curl openssh-server ca-certificates

安装Postfix服务用来发送通知邮件,使用其他SMTP服务器可以跳过此步。

sudo apt-get install -y postfix

2. 安装GitLab

添加镜像源:

curl https://packages.gitlab.com/gpg.key 2> /dev/null | sudo apt-key add - &>/dev/null
echo "deb https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/ubuntu bionic main" > /etc/apt/sources.list.d/gitlab-ce.list
sudo apt-get update

安装GitLab:

sudo EXTERNAL_URL="https://gitlab.example.com" apt-get install gitlab-ce

https://gitlab.example.com替换为自己的链接,GitLab将自动从Let’s Encrypt获取证书。

3. 浏览器访问

第一次访问时,将提示重置密码,默认账户名为root

4. 管理工具:gitlab-ctl

启动/停止/重启/强制停止/状态

gitlab-ctl start/stop/restart/kill/status

重新获取HTTPS证书

gitlab-ctl renew-le-certs

清除所有数据

gitlab-ctl cleanse

卸载

gitlab-ctl uninstall


转载请注明来源,欢迎对文章中的引用来源进行考证,欢迎指出任何有错误或不够清晰的表达。可以在下面评论区评论,也可以邮件至 wwb123123@outlook.com

文章标题:Ubuntu下搭建GitLab

本文作者:Zuozishi

发布时间:2020-04-16, 16:04:17

最后更新:2020-04-16, 19:24:48

原始链接:https://zuozishi.github.io/2020/04/16/linux/Ubuntu%E4%B8%8B%E6%90%AD%E5%BB%BAgitlab/

版权声明: "署名-非商用-相同方式共享 4.0" 转载请保留原文链接及作者。

目录