CentOS 7安装GitLab14.7
2022/2/3 7:12:50
本文主要是介绍CentOS 7安装GitLab14.7,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
在CentOS 7上安装GitLab 14.7
在 CentOS 7(以及 RedHat/Oracle/Scientific Linux 7)上,下面的命令还将在系统防火墙中打开 HTTP、HTTPS 和 SSH 访问
sudo yum install -y curl policycoreutils-python openssh-server perl #查看openssh服务状态 sudo systemctl status sshd #设置openssh服务开机启动 sudo systemctl enable sshd #启动openssh sudo systemctl start sshd #查看防火墙是否打开 sudo systemctl status firewalld #防火墙添加http和https sudo firewall-cmd --permanent --add-service=http sudo firewall-cmd --permanent --add-service=https #重新加载防火墙 sudo systemctl reload firewalld
在线安装:
- 添加 GitLab 包存储库
curl -s https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
- 安装
yum install -y gitlab-ce
离线安装
- 下载Gitlab软件包上传到CentOS
访问 https://packages.gitlab.com/gitlab/gitlab-ce/ 获取对应的软件包
- 安装GitLab
yum -y install gitlab-ce-14.7.0-ce.0.el7.x86_64.rpm
配置访问地址和端口
vim /etc/gitlab/gitlab.rb
external_url 'http://192.168.1.22:8000' nginx['listen_port'] = 8000
重载配置、重启服务
gitlab-ctl reconfigure gitlab-ctl restart
把端口添加到防火墙
firewall-cmd --zone=public --add-port=8000/tcp --permanent #重新加载防火墙 firewall-cmd --reload
默认有一个用户root,安装时没有设置密码,密码随机生成,在目录 /etc/gitlab/initial_root_password
这篇关于CentOS 7安装GitLab14.7的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 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专业技术文章分享