Centos6安装Gitlab

安装参考 https://about.gitlab.com/downloads/ 可以从清华的镜像下载安装包, 注意区分自己用的是哪个发行版 https://mirror.tuna.tsinghua.edu.cn/help/gitlab-ce/

1. iptables打开80端口

# Firewall configuration written by system-config-firewall
# Manual customization of this file is not recommended.
*filter
:INPUT ACCEPT [0:0]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
-A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
-A INPUT -p icmp -j ACCEPT
-A INPUT -i lo -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
-A INPUT -j REJECT --reject-with icmp-host-prohibited
-A FORWARD -j REJECT --reject-with icmp-host-prohibited
COMMIT

2. 安装依赖包

yum install curl openssh-server openssh-clients postfix cronie

3. 启动postfix服务, 并设为默认开启

service postfix start
chkconfig postfix on

4. 安装gitlab

rpm -i gitlab-ce-8.10.2-ce.0.el6.x86_64.rpm
# 安装结束后初始化配置 gitlab
gitlab-ctl reconfigure

5. 访问后发现会重定向回 http://localhost, 需要修改external_url

vi /etc/gitlab/gitlab.rb
# 然后修改 external_url ‘http://192.168.11.22‘
# 然后reconfigure
gitlab-ctl reconfigure

安装就完成了

时间: 2024-10-08 15:35:58

Centos6安装Gitlab的相关文章

centos6 安装GitLab

环境 Requirements 软件 版本CentOS 6.6Python 2.6Ruby 2.1.5Git 1.7.10+Redis 2.0+MySQL GitLab 7-8-stableGitLab Shell v2.6.0 yum源 为了提高软件安装速度,将yum源设置为阿里云开源镜像 $ cd /etc/yum.repos.d$ wget -O CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo必要软件包 $ yum

centos6安装GitLab全程详解和常见问题解决

GitLab,是一个使用 Ruby on Rails 开发的开源应用程序,与Github类似,能够浏览源代码,管理缺陷和注释,非常适合在团队内部使用. 官方只提供了Debian/Ubuntu系统下的安装说明文档,如果需要在centos下安装,可以参考这篇:https://github.com/gitlabhq/gitlab-recipes/tree/master/install/centos,笔者依照这篇文章的说明,成功的在centos系统上安装了gitlab,分享一下自己的安装过程和碰到的问题

转载:centos安装gitlab详解

原文地址:http://blog.csdn.net/jiangtao_st/article/details/73612298 一, 服务器快速搭建gitlab方法 可以参考gitlab中文社区 的教程centos7安装gitlab:https://www.gitlab.cc/downloads/#centos7centos6安装gitlab:https://www.gitlab.cc/downloads/#centos6如下方法按照官网来操作,手工安装过于麻烦.当前测试平台为小鸟云的三个月cen

CentOS6.5 安装gitlab以及gitolite迁移gitlab

CentOS6.5 安装gitlab以及gitolite迁移gitlab gitlab 的安装使用以及数据结构 安装 环境: CentOS6.5 基于 nignx + unicorn 搭建的应用环境, 如果想要换成passenger,可以参考网上的文档 ruby环境是基于rbenv搭建的 1: install vim yum install -y vim 2: install git > 1.7.10 install git $ rpm -i 'http://pkgs.repoforge.org

CentOS6.4 安装gitlab

一.环境 系统:CentOS6.4最小化安装 IP:192.168.3.44 二.增加yum源 增加epel源 [[email protected] ~]#  rpm -ivh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm Retrieving http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm wa

Centos6.5 安装gitlab 并使用自带的nginx

Centos6.5 安装gitlab 并使用自带的nginx 1.安装依赖 yum -y install policycoreutils openssh-server openssh-clients postfix policycoreutils-python 2.设置postfix开机启动 chkconfig postfix on && service postfix start 3.下载安装包 wget https://mirrors.tuna.tsinghua.edu.cn/gitl

Centos6.5 yum源安装gitlab

1. 安装配置依赖项 如果已经安装了Postfix来发送邮件请在安装期间选择 'Internet Site' . 你也可以用Sendmail或者 使用自定义的SMTP服务器来代替Postfix. 如果希望使用 Exim, 请 把它当做SMTP来配置. 在Centos 6和7上, 下面的命令也会配置系统防火墙,把HTTP和SSH端口开放. sudo yum install curl openssh-server postfix croniesudo service postfix startsud

CentOS6.5安装GitLab全过程

GitLab,是一个使用 Ruby on Rails 开发的开源应用程序,与Github类似,能够浏览源代码,管理缺陷和注释,非常适合在团队内部使用. 官方只提供了Debian/Ubuntu系统下的安装说明文档,如果需要在centos下安装,可以参考这篇:https://github.com/gitlabhq/gitlab-recipes/tree/master/install/centos,笔者依照这篇文章的说明,成功的在centos系统上安装了gitlab,分享一下自己的安装过程和碰到的问题

CentOS6.7安装GitLab

1 建议安装epel源 2 建议从国内清华大学yum源安装 repo文件: [gitlab-ce] name=gitlab-ce baseurl=https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el6/ repo_gpgcheck=0 gpgcheck=0 enabled=1 gpgkey=https://packages.gitlab.com/gpg.key 3 安装GitLab yum install gitlab-ce 4 启动GitL