rsync 提示错误:rsync: failed to connect to x.x.x.x No route to host (113)
,原因是没有开启端口,默认是 873。解决办法如下:
firewall
firewall-cmd --permanent --add-rich-rule="rule family="ipv4" source address="允许的ip" port protocol="tcp" port="873" accept" #开放端口
systemctl restart firewalld #重启防火墙
Iptables
iptables -I INPUT -s 允许的ip -tcp --dport 873 -j ACCEPT #开放端口
service iptables save #保存设置
service iptables restart #重启防火墙
想要了解更多内容,请持续关注码农资源网,一起探索发现编程世界的无限可能!
本站部分资源来源于网络,仅限用于学习和研究目的,请勿用于其他用途。
如有侵权请发送邮件至1943759704@qq.com删除
码农资源网 » rsync: failed to connect to x.x.x.x: No route to host (113)错误原因及解决办法
本站部分资源来源于网络,仅限用于学习和研究目的,请勿用于其他用途。
如有侵权请发送邮件至1943759704@qq.com删除
码农资源网 » rsync: failed to connect to x.x.x.x: No route to host (113)错误原因及解决办法