标签:
最近想写一些小程序,但是GitHub没有免费的private,想到写的程序还得需要部署和MySQL数据库,索性就买一个阿里云的云主机,还挺便宜,一年才600多。
下午安装了JDK、Tomcat、MySQL,现在开始安装GitLab:
sudo yum install curl openssh-server postfix cronie
sudo service postfix start
sudo chkconfig postfix on
sudo lokkit -s http -s ssh
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程序的版本号,可以去这里选择。
sudo gitlab-ctl reconfigure
Username: root
Password: 5iveL!fe
标签:
原文地址:http://www.cnblogs.com/prisonbreak/p/4842801.html