Linux redhat配置安装gitlab

Posted rhca

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux redhat配置安装gitlab相关的知识,希望对你有一定的参考价值。

Redhat 7.0 x86.64
yum仓库网络yum源
ping baidu.com #确保网络正常
yum update #升级系统
yum install openssh #用于ssh远程(非必须)
vim /etc/selinux/config selinux=disabled #selinux设置为disabled
yum install policycoreutils #安装依赖包
cat /etc/redhat-release #查看系统版本
yum install postfix #为gitlab提供邮件服务
vim /etc/yum.repo.d/gitlab-ce.repo #添加yum源以便于安装gitlab

[gitlab-ce]
name=Gitlab CE Repository
baseurl=https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7 #根据系统版本配置
gpgcheck=0
enabled=1
yum makecache #缓存
yum install gitlab-ce #安装gitlab
vim /etc/gitlab/gitlab.rb
external_url http://gitlab.example.com 改成自己的域名
/smtp 修改成自己的邮箱
gitlab-ctl reconfigure #运行gitlab
gitlab-ctl start #启动gitlab
firewall-cmd --add-server=http --permanent #防火墙添加http服务
由于gitlab默认打开80端口,80端口已被其他服务占用,需要作出修改
cd /var/opt/gitlab/nginx/conf
vim gitlab-http.conf
找到server字样:
#本例把80端口修改为8040
server {
  listen *:8084; --修改端口
  server_name localhost;

8080端口被占用,出现502错误,要更改端口:
vim /etc/gitlab/gitlab.rb
命令状态输入/unicorn[‘port‘],按Enter进入查找状态,按n往下查找,直到看到unicorn[‘port‘] =8080,修改端口,删除#号,解除注释状态
unicorn[‘port‘] = 9090

修改密码后,用root为用户名,进行登录

以上是关于Linux redhat配置安装gitlab的主要内容,如果未能解决你的问题,请参考以下文章

怎么配置gitlab gitlab

Linux系统:第十五章:gitlab集成CI

Linux ubuntu手动安装gitlabdocker安装gitlab教程及配置

Linux(centos7)下gitlab使用自己安装的nginx配置

Linux环境GitLab安装与配置

如何在 Centos 上安装 gitlab 和 redmine