gitlab7.2安装

本文涉及的产品
Redis 开源版,标准版 2GB
推荐场景:
搭建游戏排行榜
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 Tair(兼容Redis),内存型 2GB
简介: 系统:centos6.4 1.安装依赖包  导入epel: useradd git     wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.

系统:centos6.4

1.安装依赖包

 导入epel:

useradd git

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

rpm -ivh epel-release-6-8.noarch.rpm 

yum -y install build-essential zlib1g-dev libyaml-dev libssl-dev libgdbm-dev libreadline-dev libncurses5-dev libffi-dev curl openssh-server redis* checkinstall libxml2-dev libxslt-dev libcurl4-openssl-dev libicu-dev logrotate python-docutils pkg-config cmake perl cpio libicu*

2.安装最新版本git

wget http://www.codemonkey.org.uk/projects/git-snapshots/git/git-latest.tar.xz

tar xzvf git-latest.tar.xz

cd git-xxxx-xx-xx

autoconf
./configure
make
make install

cp /usr/local/bin/git /usr/bin/

3.ruby安装

curl -L --progress ftp://ftp.ruby-lang.org/pub/ruby/2.1/ruby-2.1.2.tar.gz | tar xz 

cd ruby-2.1.2

./configure --disable-install-rdoc

make

make install

4.mysql安装调整(现有环境为公司内部MYsql,连数据root账户。)

yum -y install mysql

service mysqld start 

创建库gitlabhq_production

5.gitlab安装

su git

cd /home/git

clone https://gitlab.com/gitlab-org/gitlab-ce.git -b 7-2-stable gitlab

cd /home/git/gitlab

cp config/gitlab.yml.example config/gitlab.yml (需要将此文件里面的host改为本机ip)

chown -R git log/

chown -R git tmp/

chmod -R u+rwX log/

chmod -R u+rwX tmp/

mkdir /home/git/gitlab-satellites

hmod u+rwx,g=rx,o-rwx /home/git/gitlab-satellites

chmod -R u+rwX tmp/pids/

chmod -R u+rwX tmp/sockets/

chmod -R u+rwX  public/uploads

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

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

git config --global user.name "GitLab"

git config --global user.email "example@example.com"

git config --global core.autocrlf input

cp config/database.yml.mysql config/database.yml(需要将里面的用户名密码指定为mysql,sock也指向mysql的sock)

chmod o-rwx config/database.yml

vi /home/git/gitlab/Gemfile/

将source "https://rubygems.org"  更改为source "http://ruby.taobao.org"

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

6.gitlab-shell安装

service redis start

cd /home/git/gitlab

bundle exec rake gitlab:shell:install[v1.9.7] REDIS_URL=redis://localhost:6379 RAILS_ENV=production

7.安装nginx并初始化数据库

yum -y install nginx

cd /home/git/gitlab

cp lib/support/init.d/gitlab /etc/init.d/gitlab

cp lib/support/init.d/gitlab.default.example /etc/default/gitlab

日志切割:

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

nginx主配置文件,需要按需调整server 配置,其余可以保持默认。

cp lib/support/nginx/gitlab /etc/nginx/conf.d/gitlab.conf

生成mysql数据库表结构。

bundle exec rake gitlab:setup RAILS_ENV=production    (输入yes)

执行完会提示首次登陆的用户密码:

admin@local.host

5iveL!fe

执行检查操作:

bundle exec rake gitlab:check RAILS_ENV=production     (检查是否有报错)

 

service nginx start

service gitlab start

直接访问url路径,登陆用户名和密码。

相关实践学习
基于Redis实现在线游戏积分排行榜
本场景将介绍如何基于Redis数据库实现在线游戏中的游戏玩家积分排行榜功能。
云数据库 Redis 版使用教程
云数据库Redis版是兼容Redis协议标准的、提供持久化的内存数据库服务,基于高可靠双机热备架构及可无缝扩展的集群架构,满足高读写性能场景及容量需弹性变配的业务需求。 产品详情:https://www.aliyun.com/product/kvstore     ------------------------------------------------------------------------- 阿里云数据库体验:数据库上云实战 开发者云会免费提供一台带自建MySQL的源数据库 ECS 实例和一台目标数据库 RDS实例。跟着指引,您可以一步步实现将ECS自建数据库迁移到目标数据库RDS。 点击下方链接,领取免费ECS&RDS资源,30分钟完成数据库上云实战!https://developer.aliyun.com/adc/scenario/51eefbd1894e42f6bb9acacadd3f9121?spm=a2c6h.13788135.J_3257954370.9.4ba85f24utseFl
目录
相关文章
|
7月前
|
Linux 应用服务中间件 网络安全
linux安装Gitlab
linux安装Gitlab
175 0
|
7月前
|
缓存 数据安全/隐私保护 Docker
安装gitlab
安装gitlab
330 0
|
4月前
|
Shell Docker 容器
GitlabCI学习笔记之一:安装Gitlab和GitLabRunner
GitlabCI学习笔记之一:安装Gitlab和GitLabRunner
|
3月前
|
Docker 容器
Docker安装Gitlab和Gitlab-Runner并实现项目CICD
Docker安装Gitlab和Gitlab-Runner并实现项目CICD
|
5月前
|
Devops 持续交付 开发工具
入职必会-开发环境搭建54-GitLab下载和安装
GitLab 是一个基于 web 的 Git 仓库管理工具,提供了代码托管、版本控制、协作开发、持续集成等功能,是一个综合的 DevOps 平台。用户可以使用 GitLab 托管他们的代码仓库,并利用其丰富的功能来管理和协作开发项目。 以下是 GitLab 的一些主要特点和功能。
入职必会-开发环境搭建54-GitLab下载和安装
|
4月前
|
Ubuntu 安全 网络安全
在Ubuntu 16.04上安装和配置GitLab的方法
在Ubuntu 16.04上安装和配置GitLab的方法
78 0
|
4月前
|
存储 Ubuntu 安全
在Ubuntu 18.04上安装和配置GitLab的方法
在Ubuntu 18.04上安装和配置GitLab的方法
84 0
|
4月前
|
缓存 Kubernetes Shell
CI/CD:安装配置Gitlab Runner
CI/CD:安装配置Gitlab Runner
369 0
|
6月前
|
持续交付 开发工具 git
阿里云云效产品使用问题之在云效代码域中gitlab使用docker安装的,迁移时遇到“获取企业信息失败”,是什么原因
云效作为一款全面覆盖研发全生命周期管理的云端效能平台,致力于帮助企业实现高效协同、敏捷研发和持续交付。本合集收集整理了用户在使用云效过程中遇到的常见问题,问题涉及项目创建与管理、需求规划与迭代、代码托管与版本控制、自动化测试、持续集成与发布等方面。
|
6月前
|
数据安全/隐私保护
宝塔安装gitlab
宝塔安装gitlab
172 0