gitlab升级
- 首先第一步:先安装一台与现在gitlab版本一致的机器,备份原版本gitlab数据,备份完在新服务器恢复,恢复完在进行升级,以防升级失败
- 再来一遍如何安装gitlab吧
- 我这里现在的gitlab版本 8.14.6 如下
- 下载rpm
我安装的是社区版,社区版和企业版的区别请看官网介绍:
https://www.gitlab.com.cn/installation/ce-or-ee/?distro=centos-7
我这里有以前版本的rpm就不进行下载,直接放到服务器,然后安装
- 我这里现在的gitlab版本 8.14.6 如下
- 安装gitlab准备工作
[root@test32 software]# systemctl status firewalld
● firewalld.service - firewalld - dynamic firewall daemon
Loaded: loaded (/usr/lib/systemd/system/firewalld.service; disabled; vendor preset: enabled)
Active: inactive (dead)
Docs: man:firewalld(1)
[root@test32 software]# getenforce
Disabled
[root@test32 software]# ll
-rw-r--r-- 1 root root 315833620 Apr 25 2017 gitlab-ce-8.14.6-ce.0.el7.x86_64.rpm - 安装依赖
[root@test32 software]# yum install curl policycoreutils openssh-server openssh-clients
[root@test32 software]# systemctl enable sshd
[root@test32 software]# systemctl start sshd
[root@test32 software]# yum install postfix[root@test32 software]# systemctl enable postfix
[root@test32 software]# - 安装rpm
rpm -i gitlab-ce-8.14.6-ce.0.el7.x86_64.rpm
修改配置文件中的访问地址
[root@test32 software]# vi /etc/gitlab/gitlab.rb
#external_url ‘http://test32‘
external_url ‘http://192.168.1.118‘
[root@test32 software]# gitlab-ctl reconfigure
接下来有很多的日志输出
- 访问http://192.168.1.118 第一次访问设置root密码
密码要8位
登录成功
原文地址:http://blog.51cto.com/12390045/2349642