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