linux安装git

1.linux必要配置

  • 在防火墙里开放http跟ssh端口

     yum install lokkit //安装lokkit
     yum install curl openssh-server openssh-clients postfix cronie -y//安装ssh等相关
     service postfix start/启动postfix 
    
  • 这里如果启动报错启动postfix出错,查看centos中的postfix日志

     more  /var/log/maillog
    
     postfix: fatal: parameter inet_interfaces: no local interface found for ::1
    
     vi/etc/postfix/main.cf
    
  • 发现配置为:

     inet_interfaces = localhost
    
     inet_protocols = all
    
  • 改成:

     inet_interfaces = all
    
     inet_protocols = all
    
  • 继续,重新启动

     service postfix start
    
  • 继续

     chkconfig postfix on //配置防火墙相关
    
     lokkit -s http -s ssh
    
  • 添加gitlab仓库,并安装

     curl -sS http://packages.gitlab.cc/install/gitlab-ce/script.rpm.sh | sudo bash
     
     sudo yum install gitlab-ce
    
  • 启动gitlab

     gitlab-ctl reconfigure
     
     vim /etc/gitlab/gitlab.rb 
    
  • 修改

     修改external_url为gitlab机子的ip+要使用的端口 如:http://192.168.56.101:8888
     
     修改nginx['listen_port'] = 8888
    
  • 重新配置gitlab并重启

     gitlab-ctl reconfigure
     
     gitlab-ctl restart
    
  • 配置防火墙

     vim /etc/sysconfig/iptables
     
     -A INPUT -m state --state NEW -m tcp -p tcp --dport 8888 -j ACCEPT
     
     service iptables restart
    
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值