Linux(centos 7.5)服务器安装Gitlab
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
文章目录
一、安装步骤
1、安装相关依赖
yum -y install policycoreutils openssh-server openssh-clients postfix
可能出现问题:
表示已经安装,且为最新版本,不需要进行任何操作。
2、启动ssh服务&设置为开机启动
systemctl enable sshd && sudo systemctl start sshd
查询服务启动状态
systemctl status sshd
查看状态后,显示running
表示已经启动。
3、设置postfix开机自启,并启动,postfix支持gitlab发信功能(可不开启)
systemctl enable postfix && systemctl start postfix
postfix表示通信功能,如果不需要可以不开启。
4、下载gitlab包
在线下载安装包:
wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-15.11.13-ce.0.el7.x86_64.rpm
5、安装Gitlab
安装:
rpm -ivh gitlab-ce-12.4.2-ce.0.el6.x86_64.rpm
出现的问题
解决方法
yum install policycoreutils-python
首次启动时间可能有点长,多等待一会就好。
安装成功:
7、修改Gitlab配置
vim /etc/gitlab/gitlab.rb
- 修改gitlab访问地址和端口,默认为80,我们改为82。
- 修改Nginx监听的端口号。
external_url 'http://9.205.35.164:82'
nginx['listen_port'] = 82
8、重载配置及启动Gitlab
重新加载配置(时间长)
gitlab-ctl reconfigure
重启gitlab(时间长)
gitlab-ctl restart
9、登录到页面
输入网址
http://9.205.35.164:82
-
输入新的密码
-
使用新的账号+新输入密码进行登录(默认root用户)
10、登录成功
显示当前页面,表示登录成功:
二、网关操作
1、开启相应防火墙
查看是否开启firewalld
防火墙
systemctl status firewalld
开放ssh以及http服务,然后重新加载防火墙列表
firewall-cmd --add-service=ssh --permanent
firewall-cmd --add-service=http --permanent
firewall-cmd --reload
2、把端口添加到防火墙
firewall-cmd --zone=public --add-port=82/tcp --permanent
firewall-cmd --reload
三、问题解决
1、policycoreutils-python is needed by gitlab-ce-12.10.1-ce.0.el8.x86_64
是指缺少gitlab-ce-12.10.1-ce.0.el8.x86_64
文件,下载安装即可,只针对centos7
的。
解决方法
yum install policycoreutils-python
2、重启后输入网址,无法连接
步骤8、重载配置及启动Gitlab
,重启成功以后,输入网址还是无法连接。可能是没有开启相应的网络权限。需要自己在防火墙中添加相应的开放端口。
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献19条内容
所有评论(0)