gitlab部署、配置更改、备份及恢复

https://www.gitlab.com.cn/installation/#omnibus-centos


1. 安装配置依赖项


如想使用Postfix来发送邮件,在安装期间请选择'Internet Site'. 您也可以用sendmai或者 配置SMTP服务 并 使用SMTP发送邮件.


在 Centos 6 和 7 系统上, 下面的命令将在系统防火墙里面开放HTTP和SSH端口.


sudo yum install curl openssh-server openssh-clients postfix cronie
sudo service postfix start
sudo chkconfig postfix on
sudo lokkit -s http -s ssh
2. 添加GitLab仓库,并安装到服务器上


curl -sS http://packages.gitlab.cc/install/gitlab-ce/script.rpm.sh | sudo bash
sudo yum install gitlab-ce
如果你不习惯使用命令管道的安装方式, 你可以在这里下载 安装脚本 或者 手动下载您使用的系统相应的安装包(RPM/Deb) 然后安装


curl -LJO https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el6/gitlab-ce-XXX.rpm
rpm -i gitlab-ce-XXX.rpm
3. 启动GitLab


sudo gitlab-ctl reconfigure
4. 使用浏览器访问GitLab


首次访问GitLab,系统会让你重新设置管理员的密码,设置成功后会返回登录界面.


默认的管理员账号是root,如果你想更改默认管理员账号,请输入上面设置的新密码登录系统后修改帐号名.


 参数配置和故障排查请查看 Omnibus GitLab 文档 
 GitLab-CE中国镜像源 清华大学TUNA开源镜像站, 浙江大学开源镜像站

curl -O https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-8.14.5-ce.0.el7.x86_64.rpm




111

1gitlab部署

官网 gitlab.com

Ubuntu14.04安装

1Install and configure the necessary dependencies

sudoapt-get install postfix

2. Download the Omnibus package and install everything

wgethttps://downloads-packages.s3.amazonaws.com/ubuntu-14.04/gitlab_7.9.4-omnibus.1-1_amd64.deb

sudodpkg -i gitlab_7.9.4-omnibus.1-1_amd64.deb

3. Configure and start GitLab

sudogitlab-ctl reconfigure

4. Browse to the hostname and login

Username: root
Password: 5iveL!fe

Centos6部署

1.Install and configure the necessary dependencies

sudo yum install postfix

sudo yum install cronie

sudo service postfix start

sudo chkconfig postfix on

sudo lokkit -s http -s ssh

2.Download the Omnibus package and install everything

curl -O https://downloads-packages.s3.amazonaws.com/centos-6.6/gitlab-7.9.4_omnibus.1-1.el6.x86_64.rpm

sudo rpm -i gitlab-7.9.4_omnibus.1-1.el6.x86_64.rpm

3.Configure and start GitLab

sudo gitlab-ctl reconfigure

4.Browse to the hostname and login

Username: root
Password: 5iveL!fe

 

安装完成后,在浏览器输入gitlab服务器的IP地址,就可以访问。用户名root,密码是5iveL!fe

wKiom1V1tyLwlG5ZAACeGb6ufz8984.jpg

2gitlab配置更改

gitlab安装完成后,根据自己的环境,要修改配置。

如:

gitlab修改nginx端口,绑定IP

gitlab修改ssh端口

gitlab修改访问url

gitlab修改数据库类型(这个没必要,因为这里的数据库只存储些用户名,gitlab代码放在/var/opt/gitlab/git-data/下)

gitlab修改redis,gunicorn配置等等

所有的配置在/etc/gitlab/gitlab.rb中修改,修改完配置后执行gitlab-ctl reconfigure生效

 

gitlab所有的工程目录都在/var/opt/gitlab/

# ls /var/opt/gitlab/

backups bootstrapped  git-data  gitlab-rails gitlab-shell  logrotate  nginx  postgresql  redis

 

修改配置示例:

#grep -v '#' gitlab.rb |grep -v ^$

external_url 'http://gitlab.sec.com'

gitlab_rails['gitlab_shell_ssh_port'] = 2222

 nginx['listen_addresses']= ['10.18.103.1']

修改url是别人通过url拉取代码,IP对客户端透明。修改ssh portnginx绑定IP等为环境需要解决冲突。

 

3gitlab数据备份与恢复

gitlab定时自动备份

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

 

gitlab修改备份路径

修改/etc/gitlab/gitlab.rb文件

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


/

gitlab_rails['manage_backup_path'] = true
gitlab_rails['backup_path'] = "/datadisk/gitlab/backups"
gitlab_rails['backup_archive_permissions'] = 0644
gitlab_rails['backup_keep_time'] = 7776000


git_data_dirs({
   "default" => {
     "path" => "/datadisk/gitlab"
    }

 })


/

 

gitlab恢复

停止相关数据连接服务

gitlab-ctl stop unicorn

gitlab-ctl stop sidekiq

 

1393513186编号备份中恢复

gitlab-rake gitlab:backup:restore BACKUP=1393513186

 

启动Gitlab

sudo gitlab-ctl start

 

Gitlab迁移

把备份文件拷贝到gitlab的备份目录下,根据上面gitlab恢复步骤即可。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值