版本选择
如果想安装指定版本,需要在下面的网站中下载指定版本。
安装社区版
安装并配置依赖(必要)
123456# sudo yum install -y curl policycoreutils-python openssh-server# sudo systemctl enable sshd# sudo systemctl start sshd# sudo firewall-cmd --permanent --add-service=http# sudo systemctl reload firewalld安装Postfix(用来发送通知电子邮件)
123# sudo yum -y install postfix# sudo systemctl enable postfix# sudo systemctl start postfix添加GitLab包存储库
1# curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash安装GitLab包(将http://gitlab.resoft.css.com.cn作为您要访问GitLab的域名。安装过程将自动配置并启动该域名的GitLab)
1# EXTERNAL_URL="http://gitlab.resoft.css.com.cn" yum install -y gitlab-ce相关命令
查看运行状态
1# sudo gitlab-ctl status启动
1# sudo gitlab-ctl start停止
1# sudo gitlab-ctl stop重启
1# sudo gitlab-ctl restart查看版本
12# cat /opt/gitlab/embedded/service/gitlab-rails/VERSION11.4.3-ee
配置并使用
- 浏览域名(http://gitlab.resoft.css.com.cn)并登陆
首次访问时,您将被重定向到密码重置页面。设置初始管理员帐户的密码。使用默认帐户的用户名root登录。
- 配置语言
选择用户头像->点Setting->选择Profile,将Preferred Language改成简体中文后保存即可