我正在CentOS上设置cPanel,但是遇到连接问题。它给出了“连接被拒绝” 的错误。
我正在使用具有代理Internet的系统。
curl -o latest -L https://securedownloads.cpanel.net/latest && sh latest
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- 0:00:41 --:--:-- 0
curl: (7) Failed connect to securedownloads.cpanel.net:443; Connection refused
更新: 我已将虚拟机适配器设置从“ NAT”更改为“桥接” 仍然面临错误。
curl -o latest -L https://securedownloads.cpanel.net/latest && sh latest
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- 0:03:33 --:--:-- 0
curl: (7) Failed connect to securedownloads.cpanel.net:443; Operation now in progress
答案 0 :(得分:0)
检查服务器上是否有任何防火墙阻止了连接。 ping至securedownloads.cpanel.net。
ping securedownloads.cpanel.net
如果ping正常工作,但仍然出现此错误。您也可以使用wget。
wget https://securedownloads.cpanel.net/latest && sh latest
如果您没有wget。安装它。
yum install wget -y