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

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

centos7安装gitlab

  1. 安装依赖:
    yum  -y  install  curl  policycoreutils-python  openssh-serversystemctl  enable  sshdsystemctl  start  sshdyum  -y  install  postfixsystemctl  enable  postfixsystemctl  start  postfixfirewall-cmd  --permanent  --add-service=httpsystemctl  reload  firewalld
  2. 安装:
    curl  https://packages.gitlab.com/install/repositories/gitlab/gitlab-ee/script.rpm.sh  |  bashyum  -y  install  gitlab-ee
  3. 启动:
    a. 加载配置:
    gitlab-ctl  reconfigure

    b. 启动:

    gitlab-ctl  start
  4. 常用命令:
    a. 加载配置:
    gitlab-ctl  reconfigure

    b. 启动:

    gitlab-ctl  start

    c. 停止:

    gitlab-ctl  stop

    d. 重启:

    gitlab-ctl  restart

    e. 查看状态:

    gitlab-ctl  status
  5. 修改密码并登录:
    访问:172.20.10.11用户名:root

文章同步发布: 

转载于:https://www.cnblogs.com/sohuhome/p/9834895.html

你可能感兴趣的文章
Java为何大行其道
查看>>
CFileDialog的使用方法简单介绍
查看>>
send,recv,sendto,recvfrom
查看>>
C#开发问题汇总
查看>>
Kettle
查看>>
[复习]Python基础回顾
查看>>
LNMP
查看>>
java 读写锁
查看>>
_itoa_s替换 itoa
查看>>
Nginx负载均衡
查看>>
【bzoj3456】城市规划(多项式求逆+dp)
查看>>
#ifdef 支持Mac #ifndef 支持Windows #if defined (Q_OS_WIN) 应该可以再两个系统通用
查看>>
linux源码中的核心数据结构
查看>>
EF执行SQL语句
查看>>
Ogre学习教程:Ogre1.8.1+VS2010环境配置2(转)
查看>>
webpack 样式表抽离成专门的单独文件并且设置版本号
查看>>
个人作业week7——前端开发感想总结
查看>>
VC Dimension -衡量模型与样本的复杂度
查看>>
android 中 ViewPager 的平常用法 ViewPager+ Views
查看>>
POJ 2449 Remmarguts' Date (SPFA + A星算法) - from lanshui_Yang
查看>>