Centos6.5_x64-GitLab搭建私有GitHub

GitLab,是一个利用 Ruby on Rails 开发的开源应用程序,实现一个自托管的Git项目仓库,可通过Web界面进行访问公开的或者私人项目。

它拥有与GitHub类似的功能,能够浏览源代码,管理缺陷和注释。可以管理团队对仓库的访问,它非常易于浏览提交过的版本并提供一个文件历史库。团队成员可以利用内置的简单聊天程序(Wall)进行交流。它还提供一个代码片段收集功能可以轻松实现代码复用,便于日后有需要的时候进行查找。

一、安装源和依赖包

$ cd /usr/local/src

#增epel源,如果你是i686系统,请把x86_64修改下。

$ wget -O /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6  https://www.fedoraproject.org/static/0608B895.txt

$ rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6

$ rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm

二、确认是否安装成功

$ rpm -qa gpg*

gpg-pubkey-0608b895-4bd22942

三、安装依赖包

$ yum -y update

$ yum -y groupinstall ‘Development Tools‘

$ yum -y install readline readline-devel ncurses-devel gdbm-devel glibc-devel tcl-devel openssl-devel curl-devel expat-devel db4-devel byacc sqlite-devel libyaml libyaml-devel libffi libffi-devel libxml2 libxml2-devel libxslt libxslt-devel libicu libicu-devel system-config-firewall-tui redis sudo wget crontabs logwatch logrotate perl-Time-HiRes  cmake libcom_err-devel.i686 libcom_err-devel.x86_64

四、编译安装git

$ cd /usr/local/src

$ wget https://www.kernel.org/pub/software/scm/git/git-2.4.5.tar.gz

$ yum install zlib-devel perl-CPAN gettext curl-devel expat-devel gettext-devel openssl-devel

$ yum remove git -y

$ tar xf git-2.4.5.tar.gz

$ cd git-2.4.5

$ ./configure --prefix=/usr/local/git

$ make;make install

五、安装ruby,ruby版本需要2.0+,所以先卸载系统已存在的

$ yum remove ruby

$ cd /usr/local/src

$ wget http://cache.ruby-lang.org/pub/ruby/2.1/ruby-2.1.6.tar.gz

$ tar xf ruby-2.1.6.tar.gz

$ cd ruby-2.1.6 && ./configure --prefix=/usr/local/ --disable-install-rdoc && make && make  install

六、完成后验证ruby

$which ruby

/usr/local/bin/ruby

$ruby -v

ruby 2.1.2p95 (2014-05-08 revision 45877) [x86_64-linux]

七、安装bundler

Gem是一个管理Ruby库和程序的标准包,它通过Ruby Gem(如 http://rubygems.org/ )源来查找、安装、升级和卸载软件包,非常的便捷

由于国内网络原因(你懂的),导致 rubygems.org 存放在 Amazon S3 上面的资源文件间歇性连接失败。所以你会与遇到 gem install rack 或 bundle install 的时候半天没有响应,具体可以用 gem install rails -V 来查看执行过程

将ruby默认的gem源替换成淘宝的既可以正常安装软件

$ gem sources --remove https://rubygems.org/

$ gem sources -a https://ruby.taobao.org/

$ gem sources -l

$ gem install bundler --no-doc

八、创建git需要的系统用户

useradd git

九、安装mysql

$ yum install -y mysql-server mysql-devel

$ chkconfig mysqld on

$ service mysqld start

十、创建git数据库用户

mysql> CREATE USER ‘git‘@‘localhost‘ IDENTIFIED BY ‘gitpwd‘;

十一、创建git需要的数据库、并授权一个连接git数据库的用户

mysql> CREATE DATABASE IF NOT EXISTS `gitlabhq` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`;

mysql> GRANT SELECT, LOCK TABLES, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER ON `gitlabhq`.* TO ‘git‘@‘localhost‘;

mysql> flush privileges;

十二、配置redis,

前面安装依赖包的时候已经使用yum把redis安装好了。

$ chkconfig redis on

$ cp /etc/redis.conf /etc/redis.conf.orig

修改redis监听端口

sed ‘s/^port .*/port 0/‘ /etc/redis.conf.orig |tee /etc/redis.conf

配置redis,增加redis配置内容

$ echo ‘unixsocket /var/run/redis/redis.sock‘ |tee -a /etc/redis.conf

$ echo -e ‘unixsocketperm 0770‘ |tee -a /etc/redis.conf

修改redis目录权限

$ chown redis:redis /var/run/redis

$ chmod 755 /var/run/redis

启动redis服务

$service redis restart

附加git到redis组

usermod -aG redis git

十三、安装gitlab配置

$ cd /home/git

#添加下面内容,不验证SSL,否则 git clone 时会出现错误 Peer certificate cannot be authenticated with known CA certificates

$ vi /home/git/.bash_profile

export GIT_SSL_NO_VERIFY=1

#下载源码,安装Gitlab

$ su - git

$ git clone https://github.com/gitlabhq/gitlabhq.git gitlab

#修改配置,并修改gitlab配置文件

$ cd gitlab/

$ cp config/gitlab.yml.example config/gitlab.yml

$ vim  config/gitlab.yml

gitlab:

## Web server settings (note: host is the FQDN, do not include http://)

host: 121.413.102.123          //这里的ip是你利用http或者ssh访问git的时候地址

port: 80                    //http方式访问git的端口

https: false

time_zone: ‘Beijing‘        //将时区改为北京

git:

#bin_path: /usr/bin/git

bin_path: /usr/local/git/bin/git

#创建目录,配置unicorn

$ mkdir /home/git/gitlab-satellites

$ chmod 750 /home/git/gitlab-satellites

$ cp config/unicorn.rb.example config/unicorn.rb

#修改unicorn配置文件,特别注意:比较差配置的机器,注意将unicorn.rb中的timeout设置大一点,因为第一次启动的时候Gitlab需要初始化,如果timeout太小,由于需要执行较长时间,导致无法正常启动,出现502错误

$ vim config/unicorn.rb

worker_processes 4

#拷贝配置文件rack_attack.rb

$ cp config/initializers/rack_attack.rb.example config/initializers/rack_attack.rb

#定义全局的用户和邮箱,会将配置写入到gitlab.yml配置文件

$ git config --global user.name "GitLab"

$ git config --global user.email "[email protected]"

$ git config --global core.autocrlf input

#编辑连接redis配置,拷贝配置

$ cp config/resque.yml.example config/resque.yml

#配置gitlab数据库文件

$ cp config/database.yml.mysql config/database.yml

#编辑git连接数据库配置文件

$ vim config/database.yml

production:

adapter: mysql2

encoding: utf8

collation: utf8_general_ci

reconnect: false

database: gitlabhq

pool: 10

username: git

password: "gitpwd"

host: localhost

socket: /var/lib/mysql/mysql.sock

#修改文件权限,只有git用户可读

chmod 660 config/database.yml

十四、安装gem

#修改gemfile配置,改为淘宝的ruby源,修改为

cd /home/git/gitlab

$ vi Gemfile

source ‘https://ruby.taobao.org/‘

#执行命令,这一步的时间会等很久

$ bundle install --deployment --without development test postgres aws

十五、安装gitlab-shell

$ yum install nodejs

$ su  -  git

$ cd  /home/git/

$ git clone https://github.com/gitlabhq/gitlab-shell.git

$ cd gitlab-shell

$ mkdir /home/git/repositories

$ cp config.yml.example config.yml

#修改gitlab-shell配置文件

$ vim /home/git/gitlab-shell/config.yml

user: git

gitlab_url: "http://121.413.102.123 "

http_settings:

self_signed_cert: true

repos_path: "/home/git/repositories/"

auth_file: "/home/git/.ssh/authorized_keys"

redis:

bin: "/usr/bin/redis-cli"

namespace: resque:gitlab

socket: "/var/run/redis/redis.sock"

log_level: INFO

audit_usernames: false

十六、初始化数据库

$ cd /home/git/gitlib

bundle exec rake gitlab:setup RAILS_ENV=production

#可以设置管理员密码(此步骤可省略。。。)

$ bundle exec rake gitlab:setup RAILS_ENV=production GITLAB_ROOT_PASSWORD=newpassword

十七、下载服务脚本,退出git用户使用root用户执行下面的命令

$ exit

$ wget -O /etc/init.d/gitlab  https://gitlab.com/gitlab-org/gitlab-recipes/raw/master/init/sysvinit/centos/gitlab-unicorn

$ chmod +x /etc/init.d/gitlab

$ chkconfig --add gitlab

$ chkconfig gitlab on

#设置logrotate

$ cp lib/support/logrotate/gitlab /etc/logrotate.d/gitlab

#检测应用状态

$ bundle exec rake gitlab:env:info RAILS_ENV=production

System information

System:          CentOS 6.6

Current User:     root

Using RVM:     no

Ruby Version:     2.1.6p336

Gem Version:     2.2.3

Bundler Version:1.10.5

Rake Version:     10.4.2

Sidekiq Version:3.3.0

GitLab information

Version:     7.13.0.pre

Revision:     32330e8

Directory:     /home/git/gitlab

DB Adapter:     mysql2

URL:          http://121.43.102.23:8080

HTTP Clone URL:     http://121.413.102.123:8080/some-project.git

SSH Clone URL:     [email protected]121.413.102.123 :some-project.git

Using LDAP:     no

Using Omniauth:     no

GitLab Shell

Version:     2.6.3

Repositories:     /home/git/repositories/

Hooks:          /home/git/gitlab-shell/hooks/

Git:          /usr/bin/git

#执行命令

$ bundle exec rake assets:precompile RAILS_ENV=production

#启动gitlab服务

$ service gitlab start

十八,配置gitlab 的web服务

$ yum -y install nginx

$ chkconfig nginx on

#下载gitlab配置文件,不使用SSL

$ wget -O /etc/nginx/conf.d/gitlab.conf https://gitlab.com/gitlab-org/gitlab-ce/raw/master/lib/support/nginx/gitlab --no-check-certificate

#编辑gitlab配置文件

$ vi /etc/nginx/conf.d/gitlab.conf

  listen 0.0.0.0:80 default_server;     //设置登陆gitlab 的登陆端口。

#listen [::]:80 default_server;

#server_name YOUR_SERVER_FQDN; ## Replace this with something like gitlab.example.com

  server_name 121.413.102.123 ; #修改为本机ip

  server_tokens off; ## Don‘t show the nginx version number, a security best practice

  root /home/git/gitlab/public;

## Increase this if you want to upload large attachments

## Or if you want to accept large git objects over http

#client_max_body_size 20m;

  client_max_body_size 256m;     //修改为256

#添加nginx用户到git组

$ usermod -a -G git nginx

$ chmod g+rx /home/git/

#启动nginx服务

service nginx start

#修改gitlab_url为nginx中配置的相应端口

$ vi /home/git/gitlab-shell/config.yml

gitlab_url: "http://121.413.102.123"

#新建软连接。否则客户端在clone的时候报错

$ ln -s /usr/local/git/bin/git-receive-pack /usr/bin/

$ ln -s /usr/local/git/bin/git-upload-pack  /usr/bin/

#gitlab邮件服务设置文件。

$cd /home/git/gitlab/config/initializers/

$cp smtp_settings.rb.sample smtp_settings.rb

十九、访问gitlab,系统默认admin但是我用默认密码我登录不了,这里我自己注册了用户名,注册完密码是通过邮件发送的。

#用户名:xx

#密码:xx

二十、至此gitlab安装完成,登录到gitlab上面可以进行项目的创建、用户的添加、删除、权限分配。

问题总结

1、服务端新建好用户后无法通过ssh方式访问git服务器

$ vim /home/git/gitlab-shell/config.yml

auth_file: "/home/git/.ssh/authorized_keys"

检查git服务端上面有没有这个文件,然后检查用户的公钥有没有自动写入到这个文件里面,如果没有ssh目录和authorized_keys文件需要手动创建,目录权限为600

参考链接:

http://www.centoscn.com/CentosServer/test/2015/0211/4692.html

http://www.restran.net/2015/04/09/gilab-centos-installation-note/

http://dl528888.blog.51cto.com/2382721/1213286

时间: 2024-10-17 23:01:18

Centos6.5_x64-GitLab搭建私有GitHub的相关文章

实验:安装centos-6,开启网卡,搭建私有yum仓库

安装red hat centos -6的详细步骤,包含开启网卡.搭建私有yum仓库 1.新建虚拟机,选择自定义安装,下一步 2.虚拟机硬件兼容性以已安装的vmware 为准,不知道的默认即可,然后点击下一步 3.选择稍后安装系统,然后下一步 4.操作系统linux,版本找到red hat linux 6 64 位,选择好点击下一步 5.虚拟机名称自己起,根据自己的习惯来设置 位置不要安装在c盘,有固态的安在固态上,重新创建一个文件夹去指定安装位置,便于以后的管理,即虚拟机的删除.移动.复制:选择

AntShares区块链的节点部署与搭建私有链

最近陆续体验常见的区块链开源项目,例如小蚁OnChain出的AntShares.AntShares跟其他开源区块链项目不一样,他们家是使用C#开发,基于.NET Core运行在Linux,期待未来出Go语言版.... 接下来会详细讲解如何部署AntShares和搭建私有链,本文使用virtualbox + ubuntu + AntSharesCore v1.4.,参考了官方文档. 第一步,安装.net core,如果提示安装失败,则多刷"sudo apt-get update"几次:

docker学习(8) 在mac机上搭建私有仓库

docker的私有仓库类似maven的私服,一般用于公司内部搭建一个类似docker hub的环境,这样上传.下载镜像速度较快,本文将演示如何在mac上利用docker-machine搭建无需SSL证书的私有仓库. 一.查看docker-machine虚拟机IP docker-machine ip default 默认情况下docker-toolbox创建的虚拟机名称为default,如果您的虚拟机名字不是这个,上面命令最后的default换成真实的虚拟机名字,假设default分配的IP为19

Docker笔记——搭建私有仓

Docker Hub当然是首选镜像仓,如果不想对所有人公开只想在局域网或公司内部使用,则有必要搭建私有仓来存储分发镜像. 搭建私有仓当然可以直接运行以下命令来创建个registry容器: docker run -d -p 5000:5000 --restart=always --name registry registry:2 一条命令已经很简洁了,这里如果只是写这么一句话就实在太没必要了,所以本文介绍如何一步步编译出registry镜像. registry官方路径:https://hub.do

centos6.5下搭建fastdfs分布式存储

← 使用iftop监控linux网络流量 分布式文件系统FastDFS原理介绍 → centos6.5下搭建fastdfs分布式存储 2014-04-24 Venus FastDFSGo to comment fastDFS下载地址:http://code.google.com/p/fastdfs/downloads/listlibevent官网: http://libevent.org/ 目前最新版:https://github.com/downloads/libevent/libevent/

CENTOS6.6上搭建单实例ORACLE12C

本文来自我的github pages博客http://galengao.github.io/ 即www.gaohuirong.cn 摘要: 自己在centos6.6上搭建的单实例oracle12c 由于搭建过程有些不好写,所以图片偏多 *由于截图不规则导致排版有点乱,已经安装过来了,有些截图不能回头截图了,见谅 oracle软件与linux 认证版本 检查硬件要求(Check Hardware Requirements) Check CPU grep "model name" /pro

搭建私有CA

一.实验目的 搭建私有CA并使其可以实现公司内部的的签名服务. 二.实验环境: 系统架构:Centos7(服务器).Centos6(需要申请证书的服务器)需要的软件包:openssl.openssl-libs.libssl 三.配置文件解析 搭建CA需要/etc/pki/tls/openssl.cnf文件,该配置文件 由openssl-libs生成 该配置文件中我们主要关注一下这些选项,我只列出了需要关注的,源配置文件不关注的不要修改 [ ca ] default_ca = CA_default

docker进阶-搭建私有企业级镜像仓库Harbor

为什么要搭建私有镜像仓库 ??对于一个刚刚接触Docker的人来说,官方的Docker hub是用于管理公共镜像.既然官方提供了镜像仓库我们为什么还要去自己搭建私有仓库呢?虽然也可以托管私有镜像.我们可以非常方便的把我们自己镜像推送上去,但是Docker hub提供的私有仓库个数有限.对于个人来说Docker hub是个不错的选择,但是对于企业来说,相对于安全 ,成本和公司的架构来说搭建自己的私有镜像仓库才是正确的道路. 什么是Harbor?为什么要选择Harbor ??Harbor是一个用于存

GitLab搭建详细过程

一.前提 系统:Centos 6.5 软件版本:gitlab-7.8.4 Selinux:关闭 防火墙规则:先清空(搭建好了后续自己添加相关放行规则) 二.yum源配置和相关依赖包 1.添加epel源和PUIAS_6_computational源 1 # yum -y install epel-release 创建该文件并添加以下内容: 1 2 3 4 5 6 7 # vim /etc/yum.repos.d/PUIAS_6_computational.repo [PUIAS_6_computa