冰恋 发表于 2018-1-11 18:44:36

在CentOS上安装GITLAB

为什么要用gitlab?
  方便地管理项目,设置用户权限。

参考


[*]https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/README.md
步骤
  从 https://www.gitlab.com/downloads/ 下载 GitLab安装包
  

sudo yum install openssh-server  
sudo yum install postfix # sendmail or exim is also OK
  
sudo rpm -i gitlab-x.y.z_omnibus-x.el6.x86_64.rpm # this is the .rpm you downloaded
  
sudo gitlab-ctl reconfigure
  
sudo lokkit -s http -s ssh # open up the firewall for HTTP and SSH requests
  

登录
  http://192.168.1.203/
  用户名: admin@local.host
  密码: 5iveL!fe

常见问题
  服务器重启以后不能正常工作,重新执行reconfigure可解决:
  

sudo gitlab-ctl reconfigure  
页: [1]
查看完整版本: 在CentOS上安装GITLAB