GitLab 安装;

一;

GitLab 是一个用于仓库管理系统的开源项目。

使用Git作为代码管理工具,并在此基础上搭建起来的web服务。

应用特点编辑

1. Web框架使用Ruby on Rails。

二;

1、设置yum源安装

GitLab (清华大学 Gitlab Community Edition 镜像使用)

https://mirror.tuna.tsinghua.edu.cn/help/gitlab-ce/

# vi /etc/yum.repos.d/gitlab-ce.repo

[gitlab-ce]

name=gitlab-ce

baseurl=http://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7

repo_gpgcheck=0

gpgcheck=0

enabled=1

gpgkey=https://packages.gitlab.com/gpg.key

# 再执行

# sudo yum makecache

# sudo yum install gitlab-ce -y

2、或者直接下载安装;

# wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el6/gitlab-ce-8.8.0-ce.0.el6.x86_64.rpm

# rpm -i gitlab-ce-XXX.rpm

3、插件服务;

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

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

# sudo yum install curl openssh-server openssh-clients postfix cronie

4、启动安装更新 GitLab

# sudo gitlab-ctl reconfigure

# sudo gitlab-ctl status

# 查看安装后的程序运行情况;

5、访问;

http://IP

新用户登录提示设置密码先;然后创建user进行登陆;

卸载:

# yum remove gitlab-ctl -y

注:(此为64位系统,如果执行失败,请root用户操作/root/目录下执行,安装位置/etc/gitlab/)

官方文档:

https://www.gitlab.cc/downloads/#centos6

中文文档:

https://doc.gitlab.cc/omnibus/maintenance/README.html#starting-and-stopping

时间: 2024-10-13 19:56:11

GitLab 安装;的相关文章

GitLab安装说明

http://blog.csdn.net/huangzhijie3918/article/details/51330425 GitLab,是一个使用 Ruby on Rails 开发的开源应用程序,与Github类似,能够浏览源代码,管理缺陷和注释,非常适合在团队内部使用. gitlab是基于Ruby on Rails的,安装和配置非常麻烦,不过有傻瓜安装包,https://about.gitlab.com/downloads/,或者,https://bitnami.com/stack/gitl

gitlab 安装及部署

Gitlab 安装部署 GitLab,是一个使用 Ruby on Rails 开发的开源应用程序,与Github类似,能够浏览源代码,管理缺陷和注释,非常适合在团队内部使用. 安装步骤 n升级系统并及关闭selinux和iptables n安装Ruby n创建项目运行用户(创建git账号,方便权限管理) nGitLab Shell n数据库(可以支持mysql和PostgreSQL,这里使用mysql) nGitLab(版本:6.3.1) nWeb服务器(可支持nginx和apache,这里使用

bitnami gitlab 安装

/************************************************************************************** * bitnami gitlab 安装 * 说明: * 最近再弄git服务器,但感觉缺少Web界面实在是觉得有点欠缺什么,于是找到gitlab看一下 * 运行效果,目前这种安装方法不太适合服务器安装. * * 2016-8-15 深圳 南山平山村 曾剑锋 **********************************

gitlab安装centos7

安装gitlab前放开http和ssh访问 firewall-cmd --permanent --add-service=http service firewalld restart 增加gitlab包服务器,安装gitlab curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash yum -y install gitlab-ce 编译和启动gitlab gi

gitlab安装教程

gitlab安装教程 安装教程 官网安装方法 https://about.gitlab.com/downloads/#centos7 1.准备 sudo yum install curl policycoreutils openssh-server openssh-clients sudo systemctl enable sshd sudo systemctl start sshd sudo yum install postfix sudo systemctl enable postfix s

Gitlab安装操作说明书

一.Gitlab安装操作步骤 登录官方网站https://about.gitlab.com/downloads/根据你所需要的系统版本,作者使用的是centos6, 检查您的服务器是否符合硬件要求.gitlab包是专为64位系统.32位操作系统,考虑不同的安装方法. 安装和配置必要的依赖关系 # sudo yum install curl openssh-server openssh-clients postfix cronie # sudo service postfix start # su

OpenMediaVault GitLab 安装

/**************************************************************************** * OpenMediaVault GitLab 安装 * 说明: * 安装过程中遇到各种各样的问题,尤其是在执行dpkg安装包的时候很久没反省, * 后来直接运行,放那里,吃饭去了,回来就好了. * * 2016-8-17 深圳 南山平山村 曾剑锋 ***********************************************

centos 6.5安装GitLab安装

1.安装操作系统 a.安装wget(系统版本是6.5) #yum -y install wget b.增加EPEL安装源 EPEL,即Extra Packages for Enterprise Linux,这个软件仓库里有很多非常常用的软件,而且是专门针对RHEL设计的,对RHEL标准yum源是一个很好的补充,完全免费使用,由 Fedora项目维护,所以如果你使用的是RHEL,或者CentOS,Scientific等RHEL系的linux,可以非常放心的使用EPEL的 yum源. 下载并安装GP

gitlab安装教程、gitlab官网、英文文档

gitlab官网 https://about.gitlab.com/ gitlab安装和官网英文文档 https://about.gitlab.com/downloads/ 清华大学tuna镜像源 Gitlab Community Edition 镜像使用帮助 https://mirror.tuna.tsinghua.edu.cn/help/gitlab-ce/

gitlab 安装及ldap集成 centos6.x

一.安装gitlab rpm包 及依赖 #curl -O https://downloads-packages.s3.amazonaws.com/centos-6.6/gitlab-7.5.3_omnibus.5.2.1.ci-1.el6.x86_64.rpm #yum install -y openssh-server postfix  cronie #chkconfig postfix on #rpm -i gitlab-7.5.3_omnibus.5.2.1.ci-1.el6.x86_64