gitlab的安装以及汉化

转载自:http://www.cnblogs.com/yangliheng/p/5760185.html

一,gitlab的安装

首先在网上下载好任意版本gitlab的rpm包

推荐下面的地址:

https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-8.8.5-ce.1.el7.x86_64.rpm

[root@linux-node1 ~]# rz -E
 2 
 3 rz waiting to receive.
 4 
 5 [root@linux-node1 ~]# ls
 6 
 7 anaconda-ks.cfg  gitlab-ce-8.8.5-ce.1.el7.x86_64.rpm
 8 
 9 [root@linux-node1 ~]# rpm -ivh gitlab-ce-8.8.5-ce.1.el7.x86_64.rpm #安装
10 
11 Preparing...################################# [100%]
12 
13 Updating / installing...
14 
15    1:gitlab-ce-8.8.5-ce.1.el7         ################################# [100%]
16 
17     gitlab: Thank you for installing GitLab!
18 
19     gitlab: To configure and start GitLab, RUN THE FOLLOWING COMMAND:
20 
21  
22 
23 sudo gitlab-ctl reconfigure  #配置并启动gitlab
24 
25  
26 
27 gitlab: GitLab should be reachable at http://linux-node1  默认的访问地址
28 
29 gitlab: Otherwise configure GitLab for your system by editing /etc/gitlab/gitlab.rb file  #gitlab的配置文件,修改之后需要重新gitlab-ctl reconfigure
30 
31 gitlab: And running reconfigure again.
32 
33 gitlab:
34 
35 gitlab: For a comprehensive list of configuration options please see the Omnibus GitLab readme
36 
37 gitlab: https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/README.md
38 
39 gitlab:
40 
41 It looks like GitLab has not been configured yet; skipping the upgrade script.
42 
43 [root@linux-node1 ~]#

 

这里我先修改下配置文件

vim /etc/gitlab/gitlab.rb   #修改配置文件

修改结果如下:

[root@linux-node1 ~]# grep -n "^[a-Z]" /etc/gitlab/gitlab.rb

11:external_url 'http://192.168.56.11'

 

[root@linux-node1 ~]# gitlab-ctl reconfigure  #配置并启动gitlab

打开浏览器输入http://192.168.56.11   #192.168.56.11我的本机ip

第一次登录要求设置root密码

登录成功之后,是这样的

 

汉化:

[root@linux-node1 ~]# rz

[root@linux-node1 ~]# ll

anaconda-ks.cfg
gitlab-ce-8.8.5-ce.1.el7.x86_64.rpm
gitlabhq.tar.gz

[root@linux-node1 ~]# tar xf gitlabhq.tar.gz

[root@linux-node1 ~]# ls

anaconda-ks.cfg gitlab-ce-8.8.5-ce.1.el7.x86_64.rpm gitlabhq  gitlabhq.tar.gz

 

 

###关于这个也可以直接git clone https://github.com/larryli/gitlabhq.git

 

[root@linux-node1 ~]# cp -r /opt/gitlab/embedded/service/gitlab-rails{,.ori}

[root@linux-node1 ~]# gitlab-ctl stop

ok: down: gitlab-workhorse: 1s, normally up

ok: down: logrotate: 0s, normally up

ok: down: nginx: 0s, normally up

ok: down: postgresql: 1s, normally up

ok: down: redis: 0s, normally up

ok: down: sidekiq: 0s, normally up

ok: down: unicorn: 0s, normally up

[root@linux-node1 ~]# \cp -rf /root/gitlabhq/* /opt/gitlab/embedded/service/gitlab-rails/

cp: cannot overwrite non-directory ‘/opt/gitlab/embedded/service/gitlab-rails/log’ with directory ‘/root/gitlabhq/log’

cp: cannot overwrite non-directory ‘/opt/gitlab/embedded/service/gitlab-rails/tmp’ with directory ‘/root/gitlabhq/tmp’

 

#这里的错误,忽略,因为之前已经设置gitlab的root密码了

[root@linux-node1 ~]# gitlab-ctl start

ok: run: gitlab-workhorse: (pid 25910) 0s

ok: run: logrotate: (pid 25914) 0s

ok: run: nginx: (pid 25920) 1s

ok: run: postgresql: (pid 25925) 0s

ok: run: redis: (pid 25933) 1s

ok: run: sidekiq: (pid 25937) 0s

ok: run: unicorn: (pid 25941) 0s

 

 

汉化完成之后的效果

二,gitlab的备份与恢复

 

Gitlab 创建备份

使用Gitlab一键安装包安装Gitlab非常简单, 同样的备份恢复与迁移也非常简单. 使用一条命令即可创建完整的Gitlab备份:

gitlab-rake gitlab:backup:create

使用以上命令会在/var/opt/gitlab/backups目录下创建一个名称类似为1393513186_gitlab_backup.tar的压缩包, 这个压缩包就是Gitlab整个的完整部分, 其中开头的1393513186是备份创建的日期.

Gitlab 修改备份文件默认目录

你也可以通过修改/etc/gitlab/gitlab.rb来修改默认存放备份文件的目录:

gitlab_rails['backup_path'] = '/mnt/backups'

/mnt/backups修改为你想存放备份的目录即可, 修改完成之后使用gitlab-ctl reconfigure命令重载配置文件即可.

Gitlab 自动备份

也可以通过crontab使用备份命令实现自动备份:

sudo su -
crontab -e

加入以下, 实现每天凌晨2点进行一次自动备份:

0 2 * * * /opt/gitlab/bin/gitlab-rake gitlab:backup:create
Gitlab 恢复

同样, Gitlab的从备份恢复也非常简单:

# 停止相关数据连接服务
gitlab-ctl stop unicorn
gitlab-ctl stop sidekiq

# 从1393513186编号备份中恢复
gitlab-rake gitlab:backup:restore BACKUP=1393513186

# 启动Gitlab
sudo gitlab-ctl start
Gitlab迁移

迁移如同备份与恢复的步骤一样, 只需要将老服务器/var/opt/gitlab/backups目录下的备份文件拷贝到新服务器上的/var/opt/gitlab/backups即可(如果你没修改过默认备份目录的话). 但是需要注意的是新服务器上的Gitlab的版本必须与创建备份时的Gitlab版本号相同. 比如新服务器安装的是最新的7.60版本的Gitlab, 那么迁移之前, 最好将老服务器的Gitlab 升级为7.60在进行备份.

其他
最新版本的Gitlab已经修复了HTTPS设备的BUG, 现在使用 官方HTTPS配置即可轻松启用HTTPS. 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值