记:Centos下部署Gitlab全过程 & 遇到的坑
安装依赖 (ssh, 防火墙(firewalld), postfix)
// 安装ssh sudo yum install curl policycoreutils openssh-server openssh-clients // 将SSH服务设置成开机自启动 sudo systemctl enable sshd // 启动SSH服务 sudo systemctl start sshd // 邮件通知服务-postfix sudo yum install postfix sudo systemctl enable postfix sudo systemctl start postfix // 安装防火墙-firewalld sudo yum install firewalld // 开启防火墙 service firewalld start // 增加防火墙规则(添加http服务到firewalld, pemmanent表示永久生效,若不加--permanent系统下次启动后就会失效) sudo firewall-cmd --permanent --add-service=http // 重启防火墙 sudo systemctl reload firewalld // 查看防火墙状态 systemctl status firewalld
添加gitlab源 & 安装gitlab-ce
curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash sudo yum install gitlab-ce
修改gitlab配置文件指定服务器ip和自定义端口
编辑文件
相关推荐
happyfreeangel 2020-06-18
fcds00 2020-05-31
cxin 2020-11-06
synshitou 2020-10-21
Topbeyond 2020-08-21
happyfreeangel 2020-07-27
白开水 2020-07-19
无风的雨 2020-07-08
贤时间 2020-07-06
wishli 2020-06-28
小信 2020-06-21
leehbhs 2020-06-20
83284950 2020-06-17
冯冯领队 2020-06-16
就是那个胖子 2020-06-14
83284950 2020-06-14
LiHansiyuan 2020-06-14
fcds00 2020-06-11