gitlab的安装

首先在网上下载好任意版本gitlab的rpm包

推荐下面的地址:

https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-8.8.5-ce.1.el7.x86_64.rpm

  1. [root@linux-node1 ~]# rz -E
  2.  
  3. rz waiting to receive.
  4.  
  5. [root@linux-node1 ~]# ls
  6.  
  7. anaconda-ks.cfg gitlab-ce-8.8.-ce..el7.x86_64.rpm
  8.  
  9. [root@linux-node1 ~]# rpm -ivh gitlab-ce-8.8.-ce..el7.x86_64.rpm #安装
  10.  
  11. Preparing...################################# [%]
  12.  
  13. Updating / installing...
  14.  
  15. :gitlab-ce-8.8.-ce..el7 ################################# [%]
  16.  
  17. gitlab: Thank you for installing GitLab!
  18.  
  19. gitlab: To configure and start GitLab, RUN THE FOLLOWING COMMAND:
  20.  
  21. sudogitlab-ctl reconfigure #配置并启动gitlab
  22.  
  23. gitlab: GitLab should be reachable at http://linux-node1 默认的访问地址
  24.  
  25. gitlab: Otherwise configure GitLab for your system by editing /etc/gitlab/gitlab.rb file #gitlab的配置文件,修改之后需要重新gitlab-ctl reconfigure
  26.  
  27. gitlab: And running reconfigure again.
  28.  
  29. gitlab:
  30.  
  31. gitlab: For a comprehensive list of configuration options please see the Omnibus GitLab readme
  32.  
  33. gitlab: https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/README.md
  34.  
  35. gitlab:
  36.  
  37. It looks like GitLab has not been configured yet; skipping the upgrade script.
  38.  
  39. [root@linux-node1 ~]#

这里我先修改下配置文件

vim /etc/gitlab/gitlab.rb   #修改配置文件

修改结果如下:

  1. [root@linux-node1 ~]# grep -n "^[a-Z]" /etc/gitlab/gitlab.rb
  2.  
  3. :external_url 'http://192.168.56.11'
  4.  
  5. [root@linux-node1 ~]# gitlab-ctl reconfigure #配置并启动gitlab

打开浏览器输入http://192.168.56.11   #192.168.56.11我的本机ip

第一次登录要求设置root密码

登录成功之后,是这样的

汉化:

  1. [root@linux-node1 ~]# rz
  2.  
  3. [root@linux-node1 ~]# ls
  4.  
  5. anaconda-ks.cfggitlab-ce-8.8.-ce..el7.x86_64.rpmgitlabhq.tar.gz
  6.  
  7. [root@linux-node1 ~]# tar xf gitlabhq.tar.gz
  8.  
  9. [root@linux-node1 ~]# ls
  10.  
  11. anaconda-ks.cfggitlab-ce-8.8.-ce..el7.x86_64.rpmgitlabhq gitlabhq.tar.gz

###关于这个也可以直接git clone   git clone https://github.com/larryli/gitlabhq.git

  1. [root@linux-node1 ~]# cp -r /opt/gitlab/embedded/service/gitlab-rails{,.ori}
  2.  
  3. [root@linux-node1 ~]# gitlab-ctl stop
  4.  
  5. ok: down: gitlab-workhorse: 1s, normally up
  6.  
  7. ok: down: logrotate: 0s, normally up
  8.  
  9. ok: down: nginx: 0s, normally up
  10.  
  11. ok: down: postgresql: 1s, normally up
  12.  
  13. ok: down: redis: 0s, normally up
  14.  
  15. ok: down: sidekiq: 0s, normally up
  16.  
  17. ok: down: unicorn: 0s, normally up
  18.  
  19. [root@linux-node1 ~]# \cp -rf /root/gitlabhq/* /opt/gitlab/embedded/service/gitlab-rails/
  20.  
  21. cp: cannot overwrite non-directory ‘/opt/gitlab/embedded/service/gitlab-rails/log’ with directory ‘/root/gitlabhq/log’
  22.  
  23. cp: cannot overwrite non-directory ‘/opt/gitlab/embedded/service/gitlab-rails/tmp’ with directory ‘/root/gitlabhq/tmp’

#这里的错误,忽略,因为之前已经设置gitlab的root密码了

  1. [root@linux-node1 ~]# gitlab-ctl start
  2.  
  3. ok: run: gitlab-workhorse: (pid ) 0s
  4.  
  5. ok: run: logrotate: (pid ) 0s
  6.  
  7. ok: run: nginx: (pid ) 1s
  8.  
  9. ok: run: postgresql: (pid ) 0s
  10.  
  11. ok: run: redis: (pid ) 1s
  12.  
  13. ok: run: sidekiq: (pid ) 0s
  14.  
  15. ok: run: unicorn: (pid ) 0s

汉化完成之后的效果

gitlab的安装以及汉化的更多相关文章

  1. GitLab 的安装及汉化

    系统环境:CentOS7 切记:安装GitLab 时会自动安装GitLab自带的Nginx,为了避免冲突,部署环境时先不要安装Nginx. 官网安装及汉化安装 官网安装最新版GitLab:https: ...

  2. CentOS7系统下GitLab的安装、汉化、修改默认端口、开启发送邮箱

    一.centos7.4 下安装及汉化 =============================================== 2017/11/12_第6次修改                  ...

  3. gitlab 的安装、汉化、卸载

    新机 dell服务器 2核4G 官网: https://about.gitlab.com/install/ 1.本次安装选择版本v10.8.4 wget https://mirrors.tuna.ts ...

  4. Gitlab安装以及汉化

    Gitlab安装以及汉化 系统环境: CentOS 7.5 IP:192.168.1.2 关闭selinux.firewalld gitlab-ce-10.8.4 rpm包:下载地址 一.下载并安装g ...

  5. Linux-GitLab安装及汉化

    gitlab 安装及汉化 GitLab简介: GitLab是一个用于仓库管理系统的开源项目.使用Git作为代码管理工具,并在此基础上搭建起来的Web服务.可通过Web界面进行访问公开的或者私人项目.它 ...

  6. Windows+Atlassian-Jira-6.0.4+MySql5.0安装破解汉化

     Windows+Atlassian-Jira-6.0.4+MySql5.0安装破解汉化 一:整理的安装程序 例如以下图: 文件太大.上传不到csdn上.有须要的联系. 新增的百度云盘下载:链接: ...

  7. Eclipse的安装及汉化图解

    Eclipse的安装及汉化图解 Eclipse的安装 有了JDK,你可以编译Java源码,运行Java程序,但是还没有代码编辑器,没有版本管理工具,也不能方便的管理工程文件,不能与团队协作.安装Ecl ...

  8. Confluence安装&破解&汉化

    p.MsoNormal,li.MsoNormal,div.MsoNormal { margin: 0cm; margin-bottom: .0001pt; text-align: justify; f ...

  9. IntelliJ IDEA 2018.1.2 安装及汉化教程(附:下载地址)

    附:安装包及汉化包下载地址  链接:https://pan.baidu.com/s/1ysxtVH_gnBm0QnnqB5mluQ 密码: 9pqd 1.安装步骤: 选择安装地址:可以默认.本人安装在 ...

随机推荐

  1. cloud-utils cloud-utils-growpart cloud-init

  2. 设置Windows的TCP/IP属性和内部网络号码

    这里,以Windows XP和Windows 7版本为例. 在安装了IPX/SPX协议或TCP/IP协议的Windows计算机上可以设置计算机的内部网络号码,主要可以防止进行局域网连接时出现冲突现象. ...

  3. 分布式存储Ceph的几种安装方法,源码,apt-get,deploy工具,Ubuntu CentOS

    最近搞了下分布式PB级别的存储CEPH  尝试了几种不同的安装,使用 期间遇到很多问题,和大家一起分享. 一.源码安装 说明:源码安装可以了解到系统各个组件, 但是安装过程也是很费劲的,主要是依赖包太 ...

  4. 在COM接口中不要使用同时出现只是大小写不同的名字作为属性名、函数名或者参数名

    博客搬到了fresky.github.io - Dawei XU,请各位看官挪步.最新的一篇是:在COM接口中不要使用同时出现只是大小写不同的名字作为属性名.函数名或者参数名.

  5. excel多个文件合并

    多个excel文件合并成一个需要用ms office wps是不行的 1.将所有文件放在一个文件夹里 2.在文件夹里新建一个空的excel打开 右键sheet点击查看代码->输入下面代码-> ...

  6. 成品入库过账bapi

    入库过账 FUNCTION ZPP_BAPI_PRODUCT_STOCK_IN. *"---------------------------------------------------- ...

  7. AndroidStaggeredGrid

    https://github.com/etsy/AndroidStaggeredGrid

  8. android inflater 用法

    在实际开发中LayoutInflater这个类还是非常有用的,它的作用类似于findViewById().不同点是LayoutInflater是用来找res/layout/下的xml布局文件,并且实例 ...

  9. JVM笔记6:JVM类加载机制

    虚拟机把描述类的数据从Class文件加载到内存,并对数据进行校验.转换解析.初始化,最终形成可以被虚拟机直接使用的Java类型,这就是虚拟机的类加载机制 从类被加载到虚拟机内存中开始,到卸载出内存为止 ...

  10. Android 自定义Gallery浏览图片

    之前写的<Android ImageSwitcher和Gallery的使用>一文中提到我在教室一下午为实现那个效果找各种资料.期间在网上找了一个个人觉得比较不错的效果,现在贴图上来: 其实 ...