linux centos7 gitlab-ce版本搭建

可以自行编写 .sh文件把下面内容放入执行脚本。注意修改 ip+端口

注意最新版本没有引导去设置默认密码了 https://docs.gitlab.com/ee/security/reset_user_password.html
1. sudo gitlab-rake "gitlab:password:reset"
2. Enter username为root
3. Enter passowrd 自己设置的密码
#!/bin/bash
echo -e "\e[1;33;41m gitlab-ce社区版本开始安装 \e[0m"
echo -e "\e[1;33;41m 运行内存建议2G或以上(否则执行gitlab-ctl reconfigure会卡住) \e[0m"
echo -e "\e[1;33;41m 开放端口8081 \e[0m"
systemctl start firewalld
firewall-cmd --zone=public --add-port=8081/tcp --permanent
firewall-cmd --reload
echo -e "\e[1;33;41m 开放端口8081成功 \e[0m"
echo -e "\e[1;33;41m 安装依赖 \e[0m"
yum install -y curl policycoreutils-python openssh-server perl
systemctl enable sshd
systemctl start sshd
firewall-cmd --permanent --add-service=http
firewall-cmd --permanent --add-service=https
systemctl reload firewalld
yum install postfix
systemctl enable postfix
systemctl start postfix
#curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
echo -e "\e[1;33;41m 安装gitlab-ce \e[0m"
yum install -y gitlab-ce
echo -e "\e[1;33;41m 替换ip以及端口 \e[0m"
yum install -y net-tools
sed -i "s/gitlab.example.com/192.168.0.104:8081/g" /etc/gitlab/gitlab.rb
echo -e "\e[1;33;41m 重新加载gitlab配置文件 \e[0m"
gitlab-ctl reconfigure
echo -e "\e[1;33;41m 设置开机自启 \e[0m"
systemctl enable gitlab-runsvdir.service
echo -e "\e[1;33;41m gitlab重启 \e[0m"
gitlab-ctl restart
echo -e "\e[1;33;41m gitlab状态 \e[0m"
gitlab-ctl status
echo -e "\e[1;33;41m gitlab访问地址是192.168.0.104:8081,刚开始会修改密码,默认登录用户名是root \e[0m"
echo -e "\e[1;33;41m rpm -ql gitlab-ce查询其文件安装路径及相关文件路径,其默认安装路径为/opt/gitlab/、程序数据及配置文件保存路径为/var/opt/gitlab下\e[0m"
echo -e "\e[1;33;41m 代码仓库保存位置:/var/opt/gitlab/git-data/repositories/ \e[0m"
echo -e "\e[1;33;41m 代码仓库备份位置:/var/opt/gitlab/backups/ \e[0m"
echo -e "\e[1;33;41m 自行修改ip以及端口 vim /etc/gitlab/gitlab.rb .修改完配置后 gitlab-ctl reconfigure gitlab-ctl restart \e[0m"

你可能感兴趣的:(#,GitLab)