Centos 6.9 Install gitlab 9.2

来源:互联网 发布:淘宝发货地可以改吗 编辑:程序博客网 时间:2024/05/17 22:38

依赖环境
yum -y install curl policycoreutils policycoreutils-python openssh-server openssh-clients postfix git

启动postfix
service postfix start
chkconfig --add postfix
chkconfig  postfix on

在线安装gitlab
curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
yum install -y gitlab-ce

在线安装或者
curl -sS http://packages.gitlab.com.cn/install/gitlab-ce/script.rpm.sh | sudo bash
sudo yum install gitlab-ce

离线安装或者gitlab
wget https://packages.gitlab.com/gitlab/gitlab-ce/el/6/x86_64/gitlab-ce-9.2.2-ce.0.el6.x86_64.rpm


配置gitlab
vi /etc/gitlab/gitlab.rb
14 external_url 'http://ip:端口(提示默认是80端口)

配置gitlab
gitlab-ctl reconfigure
gitlab-ctl start
gitlab-ctl status

查看gitlab
grep "^external_url" /etc/gitlab/gitlab.rb
external_url 'http://ip:端口

首次访问GitLab,系统会让你重新设置管理员的密码,设置成功后会返回登录界面.
默认的管理员账号是root,如果你想更改默认管理员账号,请输入上面设置的新密码登录系统后修改帐号名.
http://IP:端口   (root/自己的密码)