CentOS7 安装Omnibus Gitlab

Gitlab是基于git进行版本控制的开源管理系统,方便使用,界面优美

操作方法

  • 01

    1、安装并配置必要的依赖项 [root@linuxprobe ~]# sudo yum install -y curl policycoreutils openssh-server openssh-clients 已加载插件:fastestmirror, langpacks Loading mirror speeds from cached hostfile * base: mirrors.163.com * epel: mirrors.ustc.edu.cn * extras: mirrors.cn99.com * updates: mirrors.163.com 软件包 curl-7.29.0-35.el7.centos.x86_64 已安装并且是最新版本 软件包 policycoreutils-2.5-11.el7_3.x86_64 已安装并且是最新版本 软件包 openssh-server-6.6.1p1-35.el7_3.x86_64 已安装并且是最新版本 软件包 openssh-clients-6.6.1p1-35.el7_3.x86_64 已安装并且是最新版本 无须任何处理 [root@linuxprobe ~]# sudo systemctl enable sshd [root@linuxprobe ~]# sudo systemctl start sshd [root@linuxprobe ~]# [root@linuxprobe ~]# sudo firewall-cmd --permanent --add-service=http success [root@linuxprobe ~]# sudo systemctl reload firewalld

  • 02

    2、安装邮件服务 [root@linuxprobe ~]# sudo yum install postfix [root@linuxprobe ~]# sudo systemctl enable postfix [root@linuxprobe ~]# sudo systemctl start postfix

  • 03

    3、添加gitlab存储库并安装gitlab-ce [root@linuxprobe ~]# curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash [root@linuxprobe ~]# sudo yum install -y gitlab-ce [root@linuxprobe ~]# sudo gitlab-ctl reconfigure

  • 04

    4、编辑配置文件gitlab.rb 指定浏览器访问的域名为: external_url 'http://www.linuxprobe.com/',然后使用 sudo gitlab-ctl reconfigure重新加载配置文件

  • 05

    4、浏览器访问gitlab web 使用http://10.1.1.87,或者http://www.linuxprobe.com,访问自己新建的gitlab

(0)

相关推荐

  • Centos7安装时要注意哪些事项

    Centos7安装时要注意哪些事项 服务器做的是raid 1. 1.准备一个8G左右的u盘; 2.在http://www./softs/188482.html下载一个系统,我用的是CentOS-7.0 ...

  • centos7安装后缺少网卡如何解决

    近期centos7安装后缺少网卡,最终还是找到了方法:一起随小编去看看吧. 问题一: 最近要重新拿起来python,然后在装虚拟机,为了偷懒,用VM装的是centos7的系统,装完之后发现只有ifg- ...

  • centos7安装说明

    centos7于今年公布,我在虚拟机上进行了安装,与大家分享如下.配置:1G内存,20G硬盘,1核CPU,安装包CentOS-7.0-1406-x86_64-DVD.iso 操作方法 01 这里为已经 ...

  • CentOS7 安装Python开发环境

    基于CentOS7安装配置Python开发环境 操作方法 01 1.使用xshell登录到我们的CentOS7系统 2.添加CentOS SCLo存储库 [root@linuprobe ~]# yum ...

  • Centos7 安装配置 redis 3

    Centos7 安装配置 redis 3 操作方法 01 安装EPEL源 以64位为例 # wget http://dl.fedoraproject.org/pub/epel/7/x86_64/e/e ...

  • centos7怎么安装 centos7安装步骤

    CentOS 7.0 已经正式发布,网侠小编第一时间为大家提供了centos 7安装的一些技巧,如果你不了解centos7怎么安装的话可以参考下文。 CentOS 提供了不同的安装映像。你所需的映像视 ...

  • CentOS上如何安装配置GitLab?

    GitLab是利用 Ruby on Rails 一个开源的版本管理系统,实现一个自托管的Git项目仓库,可通过Web界面进行访问公开的或者私人项目.它拥有与Github类似的功能,能够浏览源代码,管理 ...

  • Centos7安装Chacha20加密算法详解

    有些程序会使用Chacha20加密算法,如果Centos7系统报错Exception: libsodium not found,则缺乏M2Crypto与libsodium依赖环境所致: Salsa20 ...

  • 详解centos7安装rabbitMq教程

    rabbitMq是一种应用程序对应用程序的通信方法,可以在AMQP基础上完整的,可复用的企业消息系统.一起来看看centos7 rabbitmq 安装的方法吧. 安装erlang 1.Erlang安装 ...