码迷,mamicode.com
首页 > 其他好文 > 详细

CentOS安装GitLab

时间:2015-09-27 22:38:28      阅读:289      评论:0      收藏:0      [点我收藏+]

标签:

最近想写一些小程序,但是GitHub没有免费的private,想到写的程序还得需要部署和MySQL数据库,索性就买一个阿里云的云主机,还挺便宜,一年才600多。

下午安装了JDK、Tomcat、MySQL,现在开始安装GitLab:

  1. 安装和配置依赖的环境。
    sudo yum install curl openssh-server postfix cronie
    sudo service postfix start
    sudo chkconfig postfix on
    sudo lokkit -s http -s ssh
  2. 获取和安装GitLab。
    curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
    sudo yum install gitlab-ce

    // 或者使用
    rpm -i gitlab-ce-XXX.rpm
    // gitlab-ce-XXX.rpm表示你需要安装的GitLab程序的版本号,可以去这里选择。
  3. 配置并启动GitLab。
    sudo gitlab-ctl reconfigure

     

  4. 可以登陆啦。。。 
    Username: root 
    Password: 5iveL!fe

     

     

CentOS安装GitLab

标签:

原文地址:http://www.cnblogs.com/prisonbreak/p/4842801.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!