官网地址: gitlab
基础安装教程
下面介绍在centos 6 上安装的方法,其他方法可参考官网https://about.gitlab.com/downloads
- 开启http和ssh
sudo yum install curl openssh-server openssh-clients postfix cronie
sudo service postfix start
sudo chkconfig postfix on
sudo lokkit -s http -s ssh
- 添加gitlab软件源并且安装
curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
sudo yum install gitlab-ce
- 自动配置gitlab并启动
sudo gitlab-ctl reconfigure
高级配置
- 修改Gitlab默认端口号
gitlab默认端口号是80
,我们需要修改为其他端口号,方法如下:
修改配置文件
sudo vi /etc/gitlab/gitlab.rb
将其中的external_url
增加端口号即可,如我的改为8888
端口
external_url 'http://192.168.70.22:8888'
再次执行以下命令使配置生效并重启服务
sudo gitlab-ctl reconfigure