centos8.2安装gitlab
2021/4/27 7:28:07
本文主要是介绍centos8.2安装gitlab,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
gitlab比较吃内存建议4G以上的内存
1.安装gitlab的依赖,如果报错不用管,centos8没有policycoreutils-python yum源
yum install -y curl policycoreutils-python openssh-server
2.启动ssh并设置为开机自启动
systemctl enable sshd
systemctl start sshd
3.下载postfix
yum -y install postfix
systemctl start postfix
systemctl enable postfix
4.添加http服务到firewalld,pemmanent表示永久生效,若不加–permanent系统下次启动后就会失效
systemctl start firewalld
firewall-cmd --permanent --add-service=http
firewall-cmd --permanent --add-service=ssh
systemctl reload firewalld
5.下载gitlab
wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el8/gitlab-ce-12.10.1-ce.0.el8.x86_64.rpm
6.安装
rpm -i gitlab-ce-12.10.1-ce.0.el8.x86_64.rpm
7.编辑ip和端口,ip:自己服务器Ip,端口:只要不重复随便定义
vim /etc/gitlab/gitlab.rb
external_url 'ip:port'
nginx['listen_port'] = port
gitlab-ctl reconfigure#比较费时间耐心等待
gitlab-ctl restart
7.修改端口后还要去修改防火墙
firewall-cmd --zone=public --add-port=port/tcp --permanent
firewall-cmd --reload
到此全部安装完毕,可以直接访问啦!
后面再补充关于汉化的方法
这篇关于centos8.2安装gitlab的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-25【机器学习(二)】分类和回归任务-决策树(Decision Tree,DT)算法-Sentosa_DSML社区版
- 2024-11-23增量更新怎么做?-icode9专业技术文章分享
- 2024-11-23压缩包加密方案有哪些?-icode9专业技术文章分享
- 2024-11-23用shell怎么写一个开机时自动同步远程仓库的代码?-icode9专业技术文章分享
- 2024-11-23webman可以同步自己的仓库吗?-icode9专业技术文章分享
- 2024-11-23在 Webman 中怎么判断是否有某命令进程正在运行?-icode9专业技术文章分享
- 2024-11-23如何重置new Swiper?-icode9专业技术文章分享
- 2024-11-23oss直传有什么好处?-icode9专业技术文章分享
- 2024-11-23如何将oss直传封装成一个组件在其他页面调用时都可以使用?-icode9专业技术文章分享
- 2024-11-23怎么使用laravel 11在代码里获取路由列表?-icode9专业技术文章分享