騰訊雲centos 6.5 64位python
1 去掉sendmailnginx
yum list installed | grep sendmail git
若存在,則使用vim
yum remove sendmailcentos
2 關閉防火牆ssh
service iptables stopcurl
setenforce 0工具
3 安裝經常使用工具gitlab
yum install -y lrzsz vim git patchpost
yum -y install curl openssh-server openssh-clients postfix cronie policycoreutils-python
4 下載安裝gitlab
https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el6/
https://packages.gitlab.com/gitlab/gitlab-ce?filter=rpms
rz 上傳rpm包到root家目錄
rpm -ivh gitlab-ce-10.0.4-ce.0.el6.x86_64.rpm
gitlab-ctl reconfigure
vim /etc/gitlab/gitlab.rb
將external_url變量的地址修改成gitlab所在centos的ip地址。
external_url 'http://git.home.com'
gitlab-ctl reconfigure
gitlab-ctl restart
登陸網址
192.168.3.197
漢化gitlab
1 停掉服務
gitlab-ctl stop
cat /opt/gitlab/embedded/service/gitlab-rails/VERSION
head -1 /opt/gitlab/version-manifest.txt
2 下載最新的漢化包
cd /root/
git clone https://gitlab.com/xhang/gitlab.git
3 查看該漢化補丁的版本
cat gitlab/VERSION
4覆蓋漢化包
4.2 切換到gitlab漢化包所在的目錄(即步驟二獲取的漢化版gitlab)
cd /root/gitlab
4.3 比較漢化標籤和原標籤,導出 patch 用的 diff 文件到/root下
git diff v10.0.4 v10.0.4-zh > ../10.0.4-zh.diff
4.4 回到/root目錄
cd ~
4.5 將10.0.4-zh.diff做爲補丁更新到gitlab中
yum install patch -y
patch -d /opt/gitlab/embedded/service/gitlab-rails -p1 < 10.0.4-zh.diff
4.6 啓動gitlab
gitlab-ctl start
4.7 從新配置gitlab
gitlab-ctl reconfigure
5,每次從新配置,都須要執行 gitlab-ctl reconfigure 使之生效。
6,日誌位置:/var/log/gitlab 能夠進去查看訪問日誌以及報錯日誌等,供訪問查看以及異常排查。
gitlab-ctl tail #查看全部日誌
gitlab-ctl tail nginx/gitlab_access.log #查看nginx訪問日誌