答案1
我也遇到过类似的问题。我可以通过关闭 IPv6 来解决这个问题。请添加
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1
到
/etc/sysctl.conf
然后在命令行上输入以下命令并按 Enter
sudo sysctl -p
接下来请创建一个新文件/etc/rc.local
并添加这些内容
#!/bin/bash
# /etc/rc.local
# Load kernel variables from /etc/sysctl.d
/etc/init.d/procps restart
exit 0
并赋予文件执行权限
chmod 755 /etc/rc.local