GitLab汉化版搭建

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

GitLab汉化版搭建_第1张图片

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

GitLab汉化版搭建_第2张图片

4 重置并启动GitLab

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

GitLab汉化版搭建_第3张图片

5 访问url

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

GitLab汉化版搭建_第4张图片

6 汉化

6.1 安装git

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

GitLab汉化版搭建_第5张图片

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 再次访问

GitLab汉化版搭建_第6张图片

你可能感兴趣的:(DevOps,gitlab汉化版,gitlab汉化版搭建,gitlab安装,centos7gitlab安装)