CentOS7搭建GitLab
2021/7/18 7:09:33
本文主要是介绍CentOS7搭建GitLab,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
开始之前,准备一台全新的centos7系统虚拟机备用
在CentOS系统上安装所需的依赖:ssh,防火墙,postfix(用于邮件通知) ,wget,以下这些命令也会打开系统防火墙中的HTTP和SSH端口访问。
注意: su root
1. 安装ssh
sudo yum install -y curl policycoreutils-python openssh-server
2. 启动ssh和设置为开机启动
sudo systemctl start sshd sudo systemctl enable sshd
3. 安装防火墙
# 安装防火墙 yum install firewalld systemd -y # 开启防火墙 service firewalld start # 添加http服务到firewalld,pemmanent表示永久生效,若不加--permanent系统下次启动后就会失效。 sudo firewall-cmd --permanent --add-service=http # 重启防火墙 sudo systemctl reload firewalld
4. 安装邮件服务
# 安装 sudo yum install postfix # 启动 sudo systemctl start postfix
5. 安装gitlab
# 拉取镜像 wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-10.0.0-ce.0.el7.x86_64.rpm # 安装 rpm -i gitlab-ce-10.0.0-ce.0.el7.x86_64.rpm
出现如图说明安装成功
需要修改配置:
# 修改gitlab配置文件指定服务器ip和自定义端口: vim /etc/gitlab/gitlab.rb # 重新加载配置和重启 gitlab-ctl reconfigure gitlab-ctl restart
这里有个注意事项,8080是nginx的默认端口, 最后不要使用8080端口。使用的画可能会出现这个错误:
重新启动后,等待几分钟,就安装成功了
这篇关于CentOS7搭建GitLab的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-15Typescript 类型教程:轻松入门与实践指南
- 2024-11-15AntDesign-icons项目实战:新手入门教程
- 2024-11-14用Scratch编写语言模型:爪爪(Clawed)式简易教程
- 2024-11-14用大型语言模型在Amazon Bedrock上分类Jira工单
- 2024-11-14从数据到行动:亚马逊Bedrock代理如何自动化复杂工作流
- 2024-11-14Databricks与优化后的Snowflake性能大比拼
- 2024-11-14亚马逊 Inspector 解析:提升您的 AWS 负载安全的利器
- 2024-11-14揭秘VS Code for Web - Azure:轻松开发云端应用的新利器
- 2024-11-14揭秘指南:如何让Databricks中的数据为最终用户所用
- 2024-11-14OpenTelemetry扩展进入CI/CD可观测性领域