安装gitlab笔记

安装vim编辑器

yum install vim -y

安装ssh协议,在CentOs系统上安装所需的依赖:ssh,防火墙,postfix(用于邮件通知)wget,以下这些命令也会打开系统防火墙中的HTTP和SSH端口访问

yum install -y curl policycoreutils-python openssh-server

设置ssh服务开机自启动

systemctl enable sshd

启动SSH服务

systemctl start sshd

安装防火墙

yum install firewalld systemd -y

开启防火墙

service firewalld start

添加HTTP服务到firewalld

firewall-cmd --permanent --add-service=http

重启防火墙

systemctl reload firewalld

安装Postfix以发送邮件

yum install postfix

将postfix服务设置成开机自启动

systemctl enable postfix

启动postfix

systemctl start postfix

安装wget,用于从外网上下载插件

yum -y install wget

找到清华大学开源镜像gitlab安装链接,使用wget访问下载

wget http://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-15.4.2-ce.0.el7.x86_64.rpm

安装gitlab

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

将设置好的端口加入防火墙

firewall-cmd --zone=public --add-port=1001/tcp --permanent

重启防火墙

systemctl reload firewalld

重置gitlab

gitlab-ctl reconfigure
```
# 修改root用户密码打开gitlab控制台(gitlab-rails console -e production)找到账户(user=User.where(id:1).first)修改密码(user.password=12345678)保存(user.save!)推出(quit)重启gitlab(gitlab-ctl restart)
相关推荐
LuH112415 分钟前
【论文阅读笔记】Scalable, Detailed and Mask-Free Universal Photometric Stereo
论文阅读·笔记
m0_748256782 小时前
WebGIS实战开源项目:智慧机场三维可视化(学习笔记)
笔记·学习·开源
红色的山茶花2 小时前
YOLOv9-0.1部分代码阅读笔记-loss.py
笔记
胡西风_foxww5 小时前
【es6复习笔记】Promise对象详解(12)
javascript·笔记·es6·promise·异步·回调·地狱
吉大一菜鸡10 小时前
FPGA学习(基于小梅哥Xilinx FPGA)学习笔记
笔记·学习·fpga开发
CCSBRIDGE13 小时前
Magento2项目部署笔记
笔记
亦枫Leonlew13 小时前
微积分复习笔记 Calculus Volume 2 - 5.1 Sequences
笔记·数学·微积分
爱码小白14 小时前
网络编程(王铭东老师)笔记
服务器·网络·笔记
LuH112415 小时前
【论文阅读笔记】Learning to sample
论文阅读·笔记·图形渲染·点云
一棵开花的树,枝芽无限靠近你16 小时前
【PPTist】组件结构设计、主题切换
前端·笔记·学习·编辑器