centos7 rpm的方式安装gitlab
时间: 2023-07-12 07:05:44 浏览: 90
在 CentOS 7 上,我们可以使用 RPM 包来安装 GitLab。以下是安装步骤:
1. 添加 GitLab 的 RPM 仓库:
```
curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
```
2. 安装 GitLab:
```
sudo yum install -y gitlab-ce
```
3. 配置 GitLab:
打开配置文件 `/etc/gitlab/gitlab.rb`,并修改其中的以下配置项:
```
external_url 'http://<gitlab-domain>'
gitlab_rails['db_adapter'] = 'postgresql'
gitlab_rails['db_encoding'] = 'utf8'
gitlab_rails['db_host'] = '<postgres-host>'
gitlab_rails['db_port'] = '<postgres-port>'
gitlab_rails['db_database'] = '<postgres-db>'
gitlab_rails['db_username'] = '<postgres-user>'
gitlab_rails['db_password'] = '<postgres-password>'
```
4. 重新配置 GitLab:
```
sudo gitlab-ctl reconfigure
```
5. 启动 GitLab:
```
sudo gitlab-ctl start
```
现在,您可以在浏览器中访问 `<gitlab-domain>`,并输入初始管理员用户名和密码来登录 GitLab。
阅读全文