博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
centos7 安装gitlab
阅读量:5264 次
发布时间:2019-06-14

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

1、CentOS上,以下命令也将在系统防火墙中打开HTTP和SSH访问。

sudo yum install curl policycoreutils openssh-server openssh-clients -ysudo systemctl enable sshdsudo systemctl start sshdsudo yum install postfixsudo systemctl enable postfixsudo systemctl start postfixsudo firewall-cmd --permanent --add-service=httpsudo systemctl reload firewalld

2、在 https://packages.gitlab.com/gitlab/gitlab-ce/packages/el/7/找到需要的版本 下载  使用rpm安装

curl -LJO https://packages.gitlab.com/gitlab/gitlab-ce/packages/el/7/gitlab-ce-XXX.rpm/downloadrpm -i gitlab-ce-XXX.rpm

3、配置并启动GitLab

sudo gitlab-ctl reconfigure 修改root账号密码方法 官方修改密码:()  root用户下执行 gitlab-rails console production
[root@svr34 bin]# gitlab-rails console productionLoading production environment (Rails 4.2.5.2)irb(main):001:0> user = User.where(id: 1).first=> #
user.password=12345678=> 12345678irb(main):003:0> user.password_confirmation=12345678=> 12345678irb(main):004:0> user.save!=> trueirb(main):005:0> quit

  

 

 

 

转载于:https://www.cnblogs.com/bara/p/7279781.html

你可能感兴趣的文章
Mysql 数据库操作
查看>>
转:linux终端常用快捷键
查看>>
009.栈实现队列
查看>>
A-Softmax的总结及与L-Softmax的对比——SphereFace
查看>>
关于软件盘覆盖住布局
查看>>
Unity3D 控制物体移动、旋转、缩放
查看>>
UVa 11059 最大乘积
查看>>
UVa 12545 比特变换器
查看>>
数组分割问题求两个子数组的和差值的小
查看>>
10个著名的思想实验1
查看>>
composer 报 zlib_decode(): data error
查看>>
linux下WPS的使用
查看>>
Web Api 利用 cors 实现跨域
查看>>
hdu 3938 并查集
查看>>
instanceof
查看>>
《深入分析Java Web技术内幕》读书笔记之JVM内存管理
查看>>
python之GIL release (I/O open(file) socket time.sleep)
查看>>
2015/8/4 告别飞思卡尔,抛下包袱上路
查看>>
软件开发与模型
查看>>
161017、SQL必备知识点
查看>>