centos8搭建 gitlab
2021/7/22 7:08:07
本文主要是介绍centos8搭建 gitlab,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
准备工作
一台云服务器,最低配置为2gb内存,安装gitlab2gb是不够的,需要配置虚拟内存,虚拟内存设置为5gb即可
1.安装ssh
sudo yum install -y curl policycoreutils-python openssh-server
2.将SSH服务设置成开机自启动,安装命令:
sudo systemctl enable sshd
3.启动SSH服务,安装命令:sudo systemctl start sshd
4.安装防火墙 yum install firewalld systemd -y
5.开启防火墙:service firewalld start
6.添加http服务到firewalld,pemmanent表示永久生效,若不加--permanent系统下次启动后就会失效。
sudo firewall-cmd --permanent --add-service=http
7.重启防火墙:sudo systemctl reload firewalld
8.安装Postfix以发送通知邮件,安装命令:sudo yum install postfix
9.将postfix服务设置成开机自启动:sudo systemctl enable postfix
10.启动postfix:sudo systemctl start postfix
11.安装wget yum -y install wget
12.安装vim编辑器 安装命令:yum install vim -y
13.添加gitlab镜像
wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el8/gitlab-ce-13.11.1-ce.0.el8.x86_64.rpm
14.安装gitlab rpm -i gitlab-ce-13.11.1-ce.0.el8.x86_64.rpm
15.修改gitlab配置文件指定服务器ip和自定义端口:
vim /etc/gitlab/gitlab.rb
加上第一句,修改第二句为你的服务器ip
16.重置并启动GitLab
gitlab-ctl reconfigure
gitlab-ctl restart
出现ok:run表示启动成功
17.创建public key
ssh-keygen
一直回车
18.复制id_rsa.pub公钥
cat ~/.ssh/id_rsa.pub
注意:第一次进入gitlab需要更改密码,此刻你随便改,改完退出也进不去的 所以赶紧去个人设置里面再去改密码,这时候,就可以用新改的密码登陆gitlab
这篇关于centos8搭建 gitlab的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-15在使用平台私钥进行解密时提示 "私钥解密失败" 错误信息是什么原因?-icode9专业技术文章分享
- 2024-11-15Layui框架有哪些方式引入?-icode9专业技术文章分享
- 2024-11-15Layui框架中有哪些减少对全局环境的污染方法?-icode9专业技术文章分享
- 2024-11-15laydate怎么关闭自动的日期格式校验功能?-icode9专业技术文章分享
- 2024-11-15laydate怎么取消初始日期校验?-icode9专业技术文章分享
- 2024-11-15SendGrid 的邮件发送时,怎么设置回复邮箱?-icode9专业技术文章分享
- 2024-11-15使用 SendGrid API 发送邮件后获取到唯一的请求 ID?-icode9专业技术文章分享
- 2024-11-15mailgun 发送邮件 tags标签最多有多少个?-icode9专业技术文章分享
- 2024-11-15mailgun 发送邮件 怎么批量发送给多个人?-icode9专业技术文章分享
- 2024-11-15如何搭建web开发环境并实现 web项目在浏览器中访问?-icode9专业技术文章分享