rsync同步报错
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了rsync同步报错相关的知识,希望对你有一定的参考价值。
由于修改了远程服务器SSH端口,在用rsync做数据同步时报如下错误:
[[email protected] mysql]# rsync -arz ./alldatabases_2017-10-30.sql [email protected]:/data/backup/13.3.21.14/
ssh: connect to host 120.24.174.90 port 22: Connection refused
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: unexplained error (code 255) at io.c(605) [sender=3.0.9]
解决:需要增加参数-e,如下:
[[email protected] mysql]# rsync -arz -e ‘ssh -p 65003‘ ./alldatabases_2017-10-30.sql [email protected]:/data/backup/13.3.21.14/
本文出自 “一万年太久,只争朝夕” 博客,请务必保留此出处http://zengwj1949.blog.51cto.com/10747365/1977333
以上是关于rsync同步报错的主要内容,如果未能解决你的问题,请参考以下文章