GitLab汉化版搭建

导读:本篇文章讲解 GitLab汉化版搭建,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com

1 环境安装

yum -y install lokkit
yum -y install curl openssh-server openssh-clients postfix cronie 
service postfix start 
chkconfig postfix on 
lokkit -s http -s ssh

2 使用rpm包安装

rpm -ivh https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-10.4.4-ce.0.el7.x86_64.rpme

在这里插入图片描述

3 修改配置

vim  /etc/gitlab/gitlab.rb

#访问url
external_url 'http://192.168.38.45'

#防止吃大量内存
unicorn['worker_processes'] = 2
postgresql['max_worker_processes'] = 2
nginx['worker_processes'] = 2

在这里插入图片描述

4 重置并启动GitLab

#输入命令,自动配置
gitlab-ctl reconfigure
#查看状态
gitlab-ctl status
#重启
gitlab-ctl restart

在这里插入图片描述

5 访问url

#设置新密码
http://192.168.38.45/

在这里插入图片描述

6 汉化

6.1 安装git

yum -y install git
#查看版本
git version

在这里插入图片描述

6.2 打汉化补丁

git clone https://gitlab.com/xhang/gitlab.git
cd gitlab    
#查看版本
cat /opt/gitlab/embedded/service/gitlab-rails/VERSION
#查看全部分支
git branch -a
#生成补丁包
git diff remotes/origin/10-4-stable remotes/origin/10-4-stable-zh > /tmp/10.4.4-zh.diff
#停止服务器
gitlab-ctl stop
#打补丁
patch -d /opt/gitlab/embedded/service/gitlab-rails -p1 < /tmp/10.4.4-zh.diff
#启动和重新配置
gitlab-ctl start
gitlab-ctl reconfigure

6.3 再次访问

在这里插入图片描述

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/15130.html

(0)
小半的头像小半

相关推荐

极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!