标签:设置 防火 nts 访问 stat 安全 stop sudo check
#安装技术依赖
yum install -y curl policycoreutils-python openssh-server
#启动ssh服务&设置为开机启动(一般都是开启的,如果关闭的请打开)
systemctl enable sshd && systemctl start sshd
Postfix是一个邮件服务器,GitLab发送邮件需要用到
#安装postfix
yum install -y postfix
#启动postfix并设置为开机启动
systemctl enable postfix && systemctl start postfix
#为了安全,建议开启防火墙
systemctl enable firewalld && systemctl start firewalld
#开放ssh、http服务
firewall-cmd --add-service=ssh --permanent
firewall-cmd --add-service=http --permanent
#重载防火墙规则
firewall-cmd --reload
#添加GitLab社区版Package
curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
#安装GitLab社区版(通常是仓库中最新的版本)
sudo EXTERNAL_URL="https://192.168.31.120:8888" yum install -y gitlab-ce
#修改配置文件
vi /etc/gitlab/gitlab.rb
#配置首页地址
external_url ‘https://192.168.31.120:8888‘
#重新配置并启动
gitlab-ctl reconfigure
#开放服务端口
firewall-cmd --zone=public --add-port=8888/tcp --permanent
#重载防火墙规则
firewall-cmd --reload
#启动
gitlab-ctl restart
#访问GitLab
https://192.168.31.120:8888
##检查在gitlab中是否有任何配置。在指定版本中删除的rb
gitlab-ctl check-config
##安装部署页面
gitlab-ctl deploy-page
##将用户配置与包可用配置进行比较
gitlab-ctl diff-config
##删除所有用户和组
gitlab-ctl remove-accounts
##升级
gitlab-ctl upgrade
##查看所有服务
gitlab-ctl service-list
##如果GitLab服务停止了就启动服务,如果已启动就不做任何操作
gitlab-ctl once
##重启GitLab服务
gitlab-ctl restart
##如果GitLab服务停止了就启动服务,如果已启动就重启服务
gitlab-ctl start
##停止GitLab服务
gitlab-ctl stop
##查看GitLab服务状态
gitlab-ctl status
##重新配置GitLab并启动
gitlab-ctl reconfigure
标签:设置 防火 nts 访问 stat 安全 stop sudo check
原文地址:https://www.cnblogs.com/jockming/p/12229311.html