2431 发表于 2016-2-22 09:27:45

Centos 6.5安装Gitlab版本管理

参考文档:https://about.gitlab.com/downloads/#centos6


1.安装Postfix和openssh软件

# yum install curl openssh-server openssh-clients postfix cronie
# service postfix start
# chkconfig postfix on
# lokkit -s http -s ssh
2.安装Gitlab服务和包
# curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
# yum install gitlab-ce
# curl -LJO https://packages.gitlab.com/gitlab/gitlab-ce/packages/el/6/gitlab-ce-XXX.rpm/download
# rpm -i gitlab-ce-XXX.rpm

3.启动Gitlab服务
# gitlab-ctl reconfigure

4.打开首页
http://IP/profile
Username: root
Password: 5iveL!fe


页: [1]
查看完整版本: Centos 6.5安装Gitlab版本管理