centos安装gitlab
时间: 2023-09-30 20:02:34 浏览: 103
安装 GitLab 的步骤如下:
1. 更新系统:
```
sudo yum update
```
2. 安装依赖:
```
sudo yum install curl policycoreutils openssh-server openssh-clients postfix
```
3. 启动 Postfix:
```
sudo systemctl enable postfix
sudo systemctl start postfix
```
4. 添加 GitLab 的官方仓库:
```
curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
```
5. 安装 GitLab:
```
sudo yum install gitlab-ce
```
6. 配置 GitLab:
打开 `/etc/gitlab/gitlab.rb` 文件,修改 `external_url` 为你的域名或 IP 地址:
```
external_url 'http://gitlab.example.com'
```
7. 重新配置 GitLab:
```
sudo gitlab-ctl reconfigure
```
8. 访问 GitLab:
在浏览器中输入 `http://your-ip-address` 或 `http://your-domain-name` 访问 GitLab。
以上是 CentOS 下安装 GitLab 的步骤,如果有需要,请根据实际情况调整。
阅读全文