我在内部服务器上安装了古老的 CentOS 5.11。服务器将在几个月内升级,但在那之前,我一直使用 5.11。
我打算安装 google-cloud-print-connector 但它在任何存储库中都不可用,因此我尝试对其进行源编译。
我已经安装了所有先决条件,其中一些来自备用存储库,其他则在尝试运行时进行了源编译
go get github.com/google/cloud-print-connector/...
我收到以下错误
# cd .; git clone https://github.com/google/cloud-print-connector /home/go/src/github.com/google/cloud-print-connector
Cloning into '/home/go/src/github.com/google/cloud-print-connector'...
fatal: unable to access 'https://github.com/google/cloud-print-connector/': error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version
package github.com/google/cloud-print-connector/...: exit status 128
这里有很多关于此错误的问题,但是建议的解决方案都不起作用。
我有 git 版本 2.9.5、openssl-1.0.2a、curl-7.42.1,它们都支持 TLS v1.2。
我也尝试过git config --global --add http.sslVersion tlsv1.2和其他 tls 变体但无济于事。
有任何想法吗?