标签:
一、Gitlab安装操作步骤
# sudo yum install curl openssh-server openssh-clients postfix cronie
# sudo service postfix start
# sudo chkconfig postfix on
# sudo lokkit –s http –s ssh
# curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
# sudo yum install gitlab-ce
# yum clean all,之后
新建 /etc/yum.repos.d/gitlab-ce.repo
,内容为
[gitlab-ce]
name=gitlab-ce
baseurl=http://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el6
repo_gpgcheck=0
gpgcheck=0
enabled=1
gpgkey=https://packages.gitlab.com/gpg.key
在执行
# sudo yum
# sudo yum install gitlab-ce
sudo gitlab-ctl reconfigure
在您的第一次打开浏览器输入你的服务器IP地址192.168.0.200访问中,您将被重定向到一个密码重置屏幕,以提供初始管理员帐户的密码。输入您所需的密码,您将被重定向回登录屏幕。
默认帐户的用户名是”root”。提供您创建的密码和登录的密码。登录后,您可以更改用户名。
标签:
原文地址:http://www.cnblogs.com/clarke/p/5647374.html