欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

gitlab centos7下的安装与使用

程序员文章站 2022-04-30 09:24:34
...

gitlab centos7下的安装与使用

https://www.gitlab.com.cn/installation/

同时我们强烈推荐承载 GitLab 运行的服务器 至少分配4GB的内存 给 GitLab。

这句话很重要。如果你的系统只有两G内存,千万别装gitlab, 这个系统会像蜗牛一样让你难受的!

1.安装

(1)  完全可以按照 上面中文官网上安装。或者

(2) https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7 下载适合centos7的 gitlab版本

      rpm -i gitlab-ce-10.0.0-ce.0.el7.x86_64.rpm

当然 (1)(2)安装并配置必要的依赖关系 这个是都必须装的。

 (3) 启动 sudo gitlab-ctl reconfigure

2.配置

(1)

external_url : x.dualven.cn:3002 (

gitlab-ctl reconfigure 之前,则(2)就会自动同步端口;如果后续更改,则(2)要手动更改
(2)/var/opt/gitlab/nginx/conf / gitlab-http.conf里的端口配置 listen 3002


3.常用命令

gitlab-ctl start|stop|status|restart

4 . 参考文章

http://www.21yunwei.com/archives/4351  --gitlab

http://blog.csdn.net/u012486840/article/details/52635263   -- firewalld

5. 注意事项之防火墙,默认情况不允许外网访问我们刚安装的gitlab .

 centos7 与6不同 , 使用 firewalld 做防火墙。

(1) 继续使用firewalld

firewall-cmd --state
查看状态后, 可以关闭防火墙先。

systemctl start firewalld         # 启动,
systemctl enable firewalld        # 开机启动
systemctl stop firewalld          # 关闭
systemctl disable firewalld       # 取消开机启动


(2) 习惯使用iptables 的,可以关闭firewall取消开机启动; 然后单独安装 iptalbes使用