rsync 错误解决

总结自己遇到问题,及其解决方法

1、rsync: read error: Connection reset by peer (104)

     rsync error: error in rsync protocol data stream (code 12) at io.c(759) [sender=3.0.6]

解决:这个一般是rsync上传的服务端出问题,网上找的很多都是说你配置文件少了,但之前都正常所以一般不是这个问题。rsync上传的服务器可能是rsync进程太多阻塞了,把rsync进程kill掉

 ps aux |grep rsync |grep -v grep |awk '{print $2}' |xargs kill -9

猜你喜欢

转载自blog.csdn.net/moluck/article/details/82753657