Linux安装gilab和jenkins
时间: 2024-01-21 14:23:15 浏览: 89
linux安装gitlab
安装GitLab:
1. 安装必要的依赖
```shell
sudo apt-get install -y curl openssh-server ca-certificates tzdata perl
```
2. 安装 GitLab
```shell
curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.deb.sh | sudo bash
sudo apt-get install gitlab-ce
```
3. 配置 GitLab
编辑 "/etc/gitlab/gitlab.rb" 文件,修改 "external_url" 选项,设置 GitLab 的 URL 地址:
```shell
sudo vi /etc/gitlab/gitlab.rb
# 修改 external_url 选项
external_url 'http://192.168.1.100:8080'
```
保存并退出。
4. 重启 GitLab
```shell
sudo gitlab-ctl reconfigure
sudo gitlab-ctl restart
```
安装Jenkins:
1. 添加 Jenkins 的仓库
```shell
wget -q -O - https://pkg.jenkins.io/debian-stable/jenkins.io.key | sudo apt-key add -
sudo sh -c 'echo deb http://pkg.jenkins.io/debian-stable binary/ > /etc/apt/sources.list.d/jenkins.list'
```
2. 安装 Jenkins
```shell
sudo apt-get update
sudo apt-get install jenkins
```
3. 启动 Jenkins
```shell
sudo systemctl start jenkins
```
4. 配置 Jenkins
在浏览器中访问 "http://localhost:8080",按照提示进行初始化配置。完成后,就可以使用 Jenkins 了。
阅读全文