在Debian 10 Buster上安装Gitlab
步骤1.在安装任何软件之前,通过apt
在终端中运行以下命令来确保系统是最新的很重要:
sudo apt update sudo apt upgrade sudo apt install ca-certificates curl openssh-server postfix
步骤2.在Debian 10上安装GitLab。
现在,我们将存储库脚本从GitLab下载到目录,如下所示:/tmp
cd /tmp wget https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.deb.sh
下载脚本后,您需要使用以下命令执行:
sudo bash script.deb.sh
然后,使用以下命令安装GitLab CE:
sudo apt install gitlab-ce
步骤3.配置GitLab。
您需要编辑文件。在这里,我们将使用nano编辑器打开文件:github.rb
sudo nano /etc/gitlab/gitlab.rb
找到该external_url
字段并进行更新以匹配您的域名,该字段应类似于以下示例:
external_url 'https://yundongfang.com'
接下来,找到该字段并对其进行更新,以包括一个电子邮件地址,该电子邮件地址将在“ Let’s Encrypt SSL”证书的有效期限临近时用于提醒用户:letsencrypt[‘contact_emails’]
letsencrypt['contact_emails'] = ['admin@yundongfang.com']
现在,运行reconfigure命令将更改应用于Gitlab服务器:
sudo gitlab-ctl reconfigure
步骤4.配置防火墙。
The firewalld users can use the following commands to open required ports on their system: sudo firewall-cmd --permanent --zone=public --add-service=http sudo firewall-cmd --permanent --zone=public --add-service=https sudo firewall-cmd --reload
步骤5.在Debian上访问Gitlab。
默认情况下,Gitlab将在HTTP端口80上可用。打开您喜欢的浏览器,然后浏览至或。http://yourdomain.com/
http://server-ip-address
感谢您使用本教程在Debian 10 Buster上安装Gitlab。有关其他帮助或有用信息,我们建议您查看Gitlab官方网站。
原创文章,作者:校长,如若转载,请注明出处:https://www.yundongfang.com/Yun39025.html