GitLab安装,导入,备份

GitLab的安****装

2.1.在CentOS系统上,下面的命令将会打开系统防火墙HTTP和SSH访问。

yum install curl policycoreutils openssh-server openssh-clients
systemctl enable sshd
systemctl start sshd
yum install postfix
systemctl enable postfix
systemctl start postfix
firewall-cmd --permanent --add-service=http
systemctl reload firewalld

2.添加GitLab镜像源并安装

这是官方的yum源,安装速度会比较慢,可以使用国内源,修改如下文件即可:

vim /etc/yum.repos.d/gitlab_gitlab-ce.repo
修改内容如下:

[gitlab-ce]
name=Gitlab CE Repository
baseurl=https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el$releasever/
gpgcheck=0
enabled=1

然后执行:
yum makecache
yum install gitlab-ee
yum install gitlab-ee-10.6.3 #制定安装版本

yum remove -y gitlab-ee #移除gitlab-ce
#配置并启动 GitLab
gitlab-ctl reconfigure
安装成功会有如下提示:
3.第一次访问GitLab
系统会重定向页面到重定向到重置密码页面,你需要输入初始化管理员账号的密码,管理员的用户名为root,初始密码为5iveL!fe。重置密码后,新密码即为刚输入的密码。

4.GitLab的汉化

成功安装GitLab后,很多朋友会想到汉化,当然如果团队里英文水平都不错的话,是没必要汉化的。

GitLab中文社区的项目,v7-v8.8是由Larry Li发起的“GitLab中文社区版项目”(https://gitlab.com/larryli/gitlab),从v8.9之后由@xhang开始继续汉化项目(https://gitlab.com/xhang/gitlab)。

首先确认当前安装版本
cat /opt/gitlab/embedded/service/gitlab-rails/VERSION
10.6.3

mkdir -p /root/test
cd /root/test /gitlab
如没安装git,需提前安装:
yum install -y git

下载最新的汉化包:
git clone https://gitlab.com/xhang/gitlab.git
如果是要下载老版本的汉化包,需要加上老版本的分支,如果想下载10.8.4,可以运行如下语句:

git clone https://gitlab.com/xhang/gitlab.git -b v10.8.4-zh
停止GitLab并执行如下语句:

gitlab-ctl stop

cd gitlab/
git fetch
git diff v10.6.3 v10.6.3-zh > ../10.6.3-zh.diff
cd ..
patch -d /opt/gitlab/embedded/service/gitlab-rails -p1 < 10.6.3-zh.diff
一路回车
gitlab-ctl reconfigure
gitlab-ctl restart

5、gitlab报502 Whoops, GitLab is taking too much time to respond

解决方法1
gitlab-ctl restart sidekiq
gitlab-ctl hup unicorn
gitlab-ctl status
尝试用上面两个命令解决,发现没有用。
这时我怒了,不断的输入gitlab-ctl status,发现unicorn的pid一直在变大。而其他几个服务的pid没有变化。
3.这时差不多找到了问题的所在了,应该就是unicorn的问题。然后看官方教程,可以使用gitlab-ctl tail unicorn 来跟踪unicorn的状态,这时候悲催的发现原来时8080端口被占用了
E, [2015-02-11T17:27:57.818492 #26687] ERROR -- : adding listener failed addr=127.0.0.1:8080 (in use)
E, [2015-02-11T17:27:57.818621 #26687] ERROR -- : retrying in 0.5 seconds (4 tries left)
E, [2015-02-11T17:27:58.318902 #26687] ERROR -- : adding listener failed addr=127.0.0.1:8080 (in use)

解决方法2
如下:
这个说明使用的端口被占用了
1、修改gitlab 仓库地址,因为默认是localhost

cd /opt/gitlab/embedded/service/gitlab-rails/config
vim gitlab.yml

Web server settings (note: host is the FQDN, do not include http://)

host: 172.16.101.191
port: 80
https: false

2、修改gitlab端口
cd /etc/gitlab/
vim gitlab.rd

Advanced settings

unicorn[‘listen‘] = ‘127.0.0.1‘

unicorn[‘port‘] = 8010
nginx[‘listen_port‘] = 8011

3、修改gitlab-http.conf
cd /var/opt/gitlab/nginx/conf
vim gitlab-http.conf
修改:
listen *:8011;
4、gitlab-rails修改cd /var/opt/gitlab/gitlab-rails/etc
vim unicorn.rb
修改:
listen "127.0.0.1:8010", :tcp_nopush => true
5、config.yml
修改cd /var/opt/gitlab/gitlab-shell
vim config.yml
gitlab_url: http://127.0.0.1:8011
6、gitlab-ctl restart

重启下,然后用172.16.101.191:8011 访问

6.Gitlab的从备份恢复也非常简单:
注意版本一定要一致。

停止相关数据连接服务

gitlab-ctl stop unicorn
gitlab-ctl stop sidekiq

例如我使用如下命令,从远程服务器copy刚才的备份文件到了新服务器的/var/opt/gitlab/backups/ 目录下

从1481598919编号备份中恢复

[[email protected] backups]# mv 1528783710_2018_06_12_10.6.3-ee_gitlab_backup.tar 1528783710_gitlab_backup.tar
[[email protected] backups]# gitlab-ctl stop unicorn
ok: down: unicorn: 1s, normally up
[[email protected] backups]# gitlab-ctl stop sidekiq
ok: down: sidekiq: 0s, normally up
[[email protected] backups]# gitlab-rake gitlab:backup:restore BACKUP=1528783710
输入几个yes

启动Gitlab

sudo gitlab-ctl start
如果报502错误
gitlab-ctl restart sidekiq
gitlab-ctl hup unicorn

7、Gitlab备份
1、创建备份

首先我们得把老服务器上的Gitlab整体备份,使用Gitlab一键安装包安装Gitlab非常简单, 同样的备份恢复与迁移也非常简单. 使用一条命令即可创建完整的Gitlab备份。

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

/etc/gitlab/gitlab.rb 配置文件须备份
/var/opt/gitlab/nginx/conf nginx配置文件
/etc/postfix/main.cfpostfix 邮件配置备份

生成完后,/var/opt/gitlab/backups目录创建一个名称类似为1502357536_2017_08_10_9.4.3_gitlab_backup.tar的压缩包

2、更改Gitlab备份目录

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

gitlab_rails[‘backup_path‘] = "/var/opt/gitlab/backups"
1
/var/opt/gitlab/backups修改为你想存放备份的目录即可,例如下面代码将备份路径修改为/mnt/backups

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

修改完成之后使用下面命令重载配置文件即可.

gitlab-ctl reconfigure

自动备份

方法1、在命令行输入: crontab -e 然后添加相应的任务,wq存盘退出。

#输入命令crontab -e
sudo crontab -e
#输入相应的任务
0 2 * /opt/gitlab/bin/gitlab-rake gitlab:backup:create CRON=1
7、重置root密码
https://docs.gitlab.com/ce/security/reset_root_password.html

原文地址:http://blog.51cto.com/guoshaoliang789/2131303

时间: 2024-10-29 15:11:26

GitLab安装,导入,备份的相关文章

gitlab 安装、备份与还原及常见设置

gitlab 安装.备份与还原及常见设置 安装 安装过程比较简单,跑在 docker 上,执行命令即可 -v参数后面的值为卷的名称,自动创建数据卷(如果数据卷不存在) https://docs.gitlab.com/omnibus/docker/ docker run --hostname gitlab.example.com --restart always --name 'gitlab' -d -p 443:443 -p 80:80 -p 22:22 -v gitlab_config:/et

gitlab 安装、备份与还原

1.下载gitlab服务端安装包,注意版本 wget --content-disposition https://packages.gitlab.com/gitlab/gitlab-ce/packages/el/7/gitlab-ce-11.6.9-ce.0.el7.x86_64.rpm/download.rpm 2.安装yum仓库 curl -s https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.r

gitlab安装,使用,备份,恢复

gitlab安装,使用,备份,恢复 git是一个版本控制器在分布式版本控制系统里,客户端并不只提取最新版本的文件快照,而是把代码仓库完整地镜像下来. 这么一来,任何一处协同工作用的服务器发生故障,事后都可以用任何一个镜像出来的本地仓库恢复.因为每一次的提取操作,实际上都是一次对代码仓库的完整备份. 1.gitlab介绍 GitLab 是一个用于仓库管理系统的开源项目,使用Git作为代码管理工具,并在此基础上搭建起来的web服务,操作起来特别方便. 2.Gitlab安装与配置 2.1yum安装软件

Gitlab配置、备份、升级、迁移

0.Gitlab安装 1.安装和配置必要的依赖关系 在CentOS7,下面的命令将在系统防火墙打开HTTP和SSH访问. yum install curl openssh-server postfixsystemctl enable sshd postfixsystemctl start sshd postfixfirewall-cmd --permanent --add-service=httpsystemctl reload firewalld2.添加gitlab包服务器安装包 curl -

Centos gitlab简单搭建备份及恢复

1.安装配置必须的依赖 yum install curl policycoreutils openssh-server openssh-clients systemctl enable sshd systemctl start sshd yum install postfix systemctl enable postfix systemctl start postfix firewall-cmd --permanent --add-service=http systemctl reload f

gitlab 安装和基本介绍

一 安装gitlab 1 环境简介 官方相关介绍: 硬件要求. 存储必要的硬盘空间在很大程度上取决于您想要存储在GitLab中的存储库的大小,但根据经验,您应该至少拥有与您的所有存储库合并占用的空闲空间.如果您希望将来灵活扩展硬盘空间,请考虑使用LVM进行安装,以便在需要时添加更多硬盘.除了本地硬盘驱动器,您还可以安装支持网络文件系统(NFS)协议的卷.此卷可能位于文件服务器,网络连接存储(NAS)设备,存储区域网络(SAN)或Amazon Web Services(AWS)弹性块存储(EBS)

gitlab安装以及操作文档

gitlab安装以及操作文档 系统:centos6.9 x86_64ip:192.168.122.148Selinux 关闭 SELINUX=disabled设定源: 新建 /etc/yum.repos.d/gitlab-ce.repo,内容为 [gitlab-ce]name=Gitlab CE Repositorybaseurl=https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el$releasever/gpgcheck=0enabled=

GitLab安装说明

http://blog.csdn.net/huangzhijie3918/article/details/51330425 GitLab,是一个使用 Ruby on Rails 开发的开源应用程序,与Github类似,能够浏览源代码,管理缺陷和注释,非常适合在团队内部使用. gitlab是基于Ruby on Rails的,安装和配置非常麻烦,不过有傻瓜安装包,https://about.gitlab.com/downloads/,或者,https://bitnami.com/stack/gitl

&nbsp; &nbsp; &nbsp; MHVTL安装--搭建备份软件测试环境的黄金搭档

MHVTL安装--搭建备份软件测试环境的黄金搭档 mhvtl download https://sites.google.com/site/linuxvtl2/home#vtl-getting-started VTL OS CENTOS6.5 64bit Backuper Server:Networker8 for Windows Server2008 x64RedHat/CentOS/Scientific Linux/Oracle Linux distributions: 1.安装MHVTL

gitlab 安装及部署

Gitlab 安装部署 GitLab,是一个使用 Ruby on Rails 开发的开源应用程序,与Github类似,能够浏览源代码,管理缺陷和注释,非常适合在团队内部使用. 安装步骤 n升级系统并及关闭selinux和iptables n安装Ruby n创建项目运行用户(创建git账号,方便权限管理) nGitLab Shell n数据库(可以支持mysql和PostgreSQL,这里使用mysql) nGitLab(版本:6.3.1) nWeb服务器(可支持nginx和apache,这里使用