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

GitLab使用自定义端口

时间:2018-03-28 16:43:20      阅读:1654      评论:0      收藏:0      [点我收藏+]

标签:默认   opera   ssh   命令   connect   报错   operation   ati   port   

? Git支持两种地址访问方式,一种是:使用ssh协议,另一种是:使用http协议
? 今天在部署Git服务器拉取和上传代码是出现了以下问题ssh: connect to host gitlab.domain.com port 22: Operation timed out。由此可以看出这是因为git在连接时使用了ssh协议默认的22端口,但是在实际工作中我们大多服务器都不会使用22端口,会指定一个特定的端口,那么解决上述报错就有以下两种方式:

  • 在执行git命令时指定当前端口
    例:git clone ssh://git@domain.com:1212/root/Projects/Myproject.git
  • 修改本地配置文件
    vim ~/.ssh/config

    hostname gitlab.domian.com
    port 1212

    ? 使用这两种方式就可以解决上述报错了。

GitLab使用自定义端口

标签:默认   opera   ssh   命令   connect   报错   operation   ati   port   

原文地址:https://www.cnblogs.com/Cherry-Linux/p/8664213.html

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