系统相关
首页 > 系统相关> > Centos7.8Gitlab安装及配置

Centos7.8Gitlab安装及配置

作者:互联网

操作系统:CentOS Linux release 7.8.2003 (Core)

gitlab版本:gitlab-ce-12.3.9-ce

下载镜像

清华大学开源软件镜像站

https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/
wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-12.3.9-ce.0.el7.x86_64.rpm

Gitlab安装及配置

安装

yum install -y gitlab-ce-12.3.9-ce.0.el7.x86_64.rpm  

修改配置文件

gitlab.rb external_url 'http://gitlab.example.com' 
grep -n '^'[a-Z] /etc/gitlab/gitlab.rb  
13:external_url 'http://172.16.8.200' 

重新配置

gitlab  gitlab-ctl reconfigure

重新启动gitlab

gitlab-ctl  start 

gitlab汉化包下载地址

 wget https://gitlab.com/xhang/gitlab/-/archive/12-3-stable-zh/gitlab-12-3-stable-zh.tar.gz

停止gitlab服务

gitlab-ctl  stop

复制到汉化包到/opt/gitlab/embedded/service/gitlab-rails/

\cp  -r gitlab-12-3-stable-zh/*   /opt/gitlab/embedded/service/gitlab-rails/

重新启动gitlab

gitlab-ctl  start 

登录gitlab,进行汉化配置

在这里插入图片描述
默认语言修改为简体中文
在这里插入图片描述
汉化完成
在这里插入图片描述

标签:12.3,Gitlab,zh,gitlab,ce,Centos7.8,ctl,安装,el7
来源: https://blog.51cto.com/10880347/2541354