博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
gitlab 2.2和更高版本升级到2.7
阅读量:6004 次
发布时间:2019-06-20

本文共 644 字,大约阅读时间需要 2 分钟。

 

 
第一步 关闭服务
/etc/init.d/gitlab stop
 
 
第二部 更新代码
cd /home/gitlab/gitlab
 
# Get latest code
git pull origin stable
 
# Update rubygems
gem update --system
 
# We changed config format so replace with new default and edit
cp config/gitlab.yml.example config/gitlab.yml 
 
# Install gems
bundle install --without development test
 
# Migrate db
bundle exec rake db:migrate RAILS_ENV=production
 
# Update hooks
bundle exec rake gitlab:app:update_hooks RAILS_ENV=production
 
# Enable automerge
bundle exec rake gitlab:app:enable_automerge RAILS_ENV=production
 
# Check APP Status
bundle exec rake gitlab:app:status RAILS_ENV=production
 
第三步 启动服务
/etc/init.d/gitlab start
 

转载地址:http://kusmx.baihongyu.com/

你可能感兴趣的文章
Ansible之十一:变量详解
查看>>
那些SCOM 管理包开发中遇到的坑1–Powershell scriptBlock Invoke执行结果的类型
查看>>
关于Server Sql 2008触发器的使用
查看>>
mac常见命令
查看>>
Redhat 系统相关调优参数注解
查看>>
nextus的使用
查看>>
Python自动化开发学习5-2-subprocess模块
查看>>
编程实现最小化窗口到桌面右下角图标的代码
查看>>
ELK stack实战之结合rsyslog分析系统日志(auth.log)
查看>>
网络管理工具与IT运维管理平台的差别
查看>>
五一期间安全回顾 木马威胁提升 移动设备数据泄漏受重视
查看>>
VDI序曲二十 桌面虚拟化和RemoteApp集成到SharePoint 2010里
查看>>
oracle里long类型的总结
查看>>
10种有用的CSS技巧
查看>>
服务端接口中的那些坑
查看>>
MySql like 查询 变向写法(不用like 完成like查询)
查看>>
Struts 笔记
查看>>
《C++面向对象高效编程(第2版)》——2.2 对象接口的重要性
查看>>
五个 ping 工具的使用实例
查看>>
在Linux系统下玩《炉石传说:魔兽英雄传》
查看>>