CentOS 服務器 git clone下載加速(下載過慢或超時)

  • CentOS 服務器 上經過 git clone 下載項目,速度很慢或直接超時git

    [root@VM-0-11-centos home]# git clone https://github.com/dengzemiao/DZMLuckyDraw.git
    正克隆到 'DZMLuckyDraw'...
    error: RPC failed; result=35, HTTP code = 0
    fatal: The remote end hung up unexpectedly
    複製代碼
  • git clone 特別慢,是由於 github.global.ssl.fastly.net 域名被限制了,只要找到這個域名對應的 IP 地址,而後在 hosts 文件中加上 ip–>域名 的映射,刷新 DNS 緩存即可。github

  • nslookup 命令獲取 github IP 地址vim

    一、若是沒有安裝,則須要安裝一下centos

    $ yum -y install bind-utils
    複製代碼

    二、獲取 IP 地址緩存

    $ nslookup github.global.ssl.fastly.net
    $ nslookup github.com
    複製代碼

    image.png

  • 修改 hosts 文件服務器

    一、編輯 hostsmarkdown

    $ sudo vim /etc/hosts
    複製代碼

    二、填入內容,保存spa

    格式:
    x.x.x.x http://global-ssl.fastly.net 
    x.x.x.x http://github.com
    
    例如拿上面獲得的IP地址:
    69.171.229.73 http://global-ssl.fastly.net 
    13.250.177.223 http://github.com
    複製代碼

    image.png

  • nscd 命令更新 DNS 緩存.net

    一、若是沒有安裝,則須要安裝一下3d

    $ yum install -y nscd
    複製代碼

    二、更新 DNS 緩存

    $ nscd -i hosts
    複製代碼
  • 而後再次執行 git clone,則會進入下載。

    [root@VM-0-11-centos home]# git clone https://github.com/dengzemiao/DZMLuckyDraw.git
    正克隆到 'DZMLuckyDraw'...
    remote: Enumerating objects: 2644, done.
    remote: Counting objects: 100% (2644/2644), done.
    remote: Compressing objects: 100% (1562/1562), done.
    接收對象中:   1% (41/2644), 897.00 KiB | 897.00 KiB/s
    複製代碼
相關文章
相關標籤/搜索