前言啦,随便看看咯
官网: https://about.gitlab.com/
1、gitLab 是一个用于仓库管理系统的开源项目,使用Git作为代码管理工具,并在此基础上搭建起来的web服务。
2、GitLab和GitHub一样属于第三方基于Git开发的作品,免费且开源(基于MIT协议),与Github类似,可以注册用户,任意提交你的代码,添加SSHKey等等。不同的是,GitLab是可以部署到自己的服务器上,数据库等一切信息都掌握在自己手上,适合团队内部协作开发,你总不可能把团队内部的东西总放在别人的服务器上吧?简单来说可把GitLab看作个人版的GitHub咯。
一、安装相关依赖
yum -y install policycoreutils openssh-server openssh-clients postfifix
2.启动ssh服务&设置为开机启动
systemctl enable sshd && sudo systemctl start sshd
3.设置postfifix开机自启,并启动,postfifix支持gitlab发信功能
systemctl enable postfifix && systemctl start postfifix
4.开放ssh以及http服务,然后重新加载防火墙列表
firewall-cmd --add-service=ssh --permanent
firewall-cmd --add-service=http --permanent
firewall-cmd --reload
如果关闭防火墙就不需要做以上配置,然后在线下载gitlab安装包:
wget http://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-14.5.3-ce.0.el7.x86_64.rpm
5.解压
用这个 rpm -ivh gitlab-ce-14.5.3-ce.0.el7.x86_64.rpm
或者rpm -i gitlab-ce-14.9.5-ce.0.el7.x86_64.rpm
7.修改gitlab配置
vi /etc/gitlab/gitlab.rb
修改gitlab访问地址和端口,默认为80,我们改为82
external_url ‘http://192.168.137.20:82’
nginx[‘listen_port’] = 82
8.重载配置及启动gitlab
gitlab-ctl reconfifigure sudo gitlab-ctl reconfigure
sudo gitlab-ctl restart 或者
gitlab-ctl restart
9.把端口添加到防火墙
firewall-cmd --zone=public --add-port=82/tcp --permanent
firewall-cmd --reload
10.查看gitlab版本
标签:gtilab,cmd,洒洒,--,gitlab,firewall,Linux,rpm,postfifix From: https://blog.csdn.net/lbp0123456/article/details/141968311gitlab-runner --version