码迷,mamicode.com
首页 > 其他好文 > 详细

gitlab的搭建及问题的解决

时间:2015-04-05 20:20:07      阅读:561      评论:0      收藏:0      [点我收藏+]

标签:

 

gitlab则是类似于github的一个工具,github无法免费建立私有仓库,并且为了代码安全,于是在内网安装了一个自己实验室的一个git服务器,gitlab有很多依赖,而bitnami制作了一键安装的包,

安装环境:redhat + bitnami-gitlab-7.8-linux-x64-installer.run

 

下面给出安装过程

1 安装全过程

下面是安装全过程:  [root@rhel64-origin~]# ./bitnami-gitlab-7.8-0-linux-x64-installer.run

The installer detects that exists a ‘git‘ user in the system. This installer will change the configuration for this user. Do you want to continue the installation? [y/N]: y

 

The installer detects that exists a ‘gitlab_ci‘ user in the system. This installer will change the configuration for this user. Do you want to continue the installation? [y/N]: y

 

---------------------------------------------------------------------

Welcome to the Bitnami Gitlab Stack Setup Wizard.

 

---------------------------------------------------------------------

Select the components you want to install; clear the components you do not wantto install. Click Next when you are ready to continue.

 

GitLab : Y (Cannot be edited)

 

GitLab CI [Y/n] :Y

 

Is the selection above correct? [Y/n]: Y

 

---------------------------------------------------------------------

Installation folder Please, choose a folder to install Bitnami Gitlab Stack Select a folder [/opt/gitlab-7.8-0]:

 

---------------------------------------------------------------------

Create Admin account Bitnami Gitlab Stack admin user creation

 

Email Address [user@example.com]: 11615xxxxx@qq.com

 

Login [user]:xsf

 

Password :********

Please confirm your password :********

----------------------------------------------------------------------------

Hostname that will be used to create internal URLs. If this value is incorrect,you may be unable to access your Gitlab installation from other computers. It isadvisable to use a Domain instead of an IP address for compatibility withdifferent browsers.

 

Domain [121.49.111.13]

注:这个域名必须要用申请到的公网IP,在后台会被封装成发给用户验证邮件的链接,否则用户登陆不了gitlab服务器

 

Do you want to configure mail support? [y/N]: N

注:很多教程此处选Y,后面给了配置,但是亲测无法发邮件,此处选N,不管该步骤,完成安装即可

 

 

最后注意把所使用qq邮箱的划线选项开启,后面要使用qq这个服务中转

技术分享

启动服务# /opt/gitlab-7.1.1-0/ctlscript.sh restart

注:gitlab脚本都在这个文件中

2 遇到问题

1 发出邀请邮件,但是链接点击进入不了服务器

由于使用的是HTTP服务,需要80端口,因此可以检测服务器80端口是否被禁止可以使用这个网页来测试对应ip地址的端口情况 http://tool.chinaz.com/port

下面这个教程可以从防火墙让linux服务器开启端口http://www.myhack58.com/Article/48/66/2012/34999.htm

3 常用网络检查命令

Linux:

ifconfig

用来显示所有网络接口的详细情况的,如:ip地址,子网掩码等。

 

ethx是以太网网卡的名称。

配置文件在/etc/sysconfig/network-scripts/ifcfg-eth0中

DEVICE="eth0"

HWADDR="00:0C:29:68:C0:8C"

NM_CONTROLLED="yes"

ONBOOT="yes"  设置为yes则开机的时候启动网卡,no为开机时不启动网卡

BOOTPROTO=dhcp  dhcp设置为动态获取IP,static则设置为静态获取Ip

#IPADDR=192.168.1.5  设置ip地址

#GATEWAY=192.168.1.1  设置网关

#NETMASK=255.255.255.0  设置子网掩码

在手动固定IP时,IPADDR和NETMASK一定要一起写。

 

ping:

用于检查网络上某台主机是否为活动状态或是否发生故障。原理是利用了TCP/IP协议中的IP层中的ICMP协议从特定的主机上返回响应。

 

如果想禁ping的话,则echo 1 > /proc/sys/net/ipv4/icmp_echo_ignore_all

 

netstat –an

用于显示网络连接、路由表和网络接口信息的。

选项:

a:显示所有套接子的状态。

n:打印实际的地址,加了这个参数速度比较好,消耗内存小。

r:打印路由表。

 

LISTEN代表侦听来自远方的TCP端口的连接请求。在本图中,接收来自任何IP的任何端口去连本机的22端口。

ESTABLISHED代表打开的连接情况。

在Linux中,端口机制是如果一个端口被外部的一起请求占用了,系统会自动复制出来一个和原来的端口一模一样的端口进行侦听下一个外部请求。

 

route:

用于查看那系统的路由表信息

 

 

traceroute

用于追踪网络数据包的路径,数据包的大小默认为40字节。可以知道数据包到达目的地需要经过几个路由。

 

 

nslook

用于查询一台机器的IP地址和所对应的域名

 

 lsof

主要用于查看特定端口的情况。

 

 

 

gitlab的搭建及问题的解决

标签:

原文地址:http://www.cnblogs.com/xsfelvis/p/4394537.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!