我正在尝试关注Phusion Passenger installation instructions for CentOS/RHEL 7。我遇到了与Passenger repo的HTTPS连接问题。
我能够通过将fig, (ax, ax2) = plt.subplots(2,1, gridspec_kw = {'height_ratios':[13,2]},figsize=(15,12), sharex=True)
df_plotdata.plot(kind='scatter', ax=ax, x='index_cancer', y='index_g', s=df_plotdata['freq1']*50, c=df_plotdata['freq2'], cmap=cmap)
df2.plot(ax=ax2, x='index_cancer', y='freq', kind = 'bar')
添加到强制TLSv1的请求来解决curl
请求以获取存储库定义。但是,我还没能为--tlsv1
做同样的事情,因为它仍然没有收到以下消息:
yum
我已尝试使用failure: repodata/repomd.xml from passenger: [Errno 256] No more mirrors to try.
https://oss-binaries.phusionpassenger.com/yum/passenger/el/7/x86_64/repodata/repomd.xml:
[Errno 14] curl#35 - "TCP connection reset by peer"
添加.curlrc
文件,但tlsv1
似乎无法读取该文件,并且继续失败并出现同样的错误。
yum
配置为始终使用TLSv1?yum
和curl
下载并安装RPM套餐的公开网址,并完全绕过rpm
?yum
连接的内容?我在CentOS 7.0.1406上使用yum
3.4.3。 已更新: yum
返回:
curl -V
答案 0 :(得分:1)
问题似乎是过时的nss
包。更新nss
包工作:
sudo yum install nss
之后,我可以使用curl
下载yum repo定义,并使用mod_passenger
安装yum
包。
答案 1 :(得分:0)
Phusion刚刚解决了该服务器的问题,你现在可以再试一次吗?