同步文件时出错:

rsync error: unexplained error (code 255) at io.c(231) [sender=3.2.7]

解决办法:

1, lsyncd服务器的同步用户目录下创建config文件:

cd /root/.ssh

vim config

内容如下:

Host *
     HostName 同步目标服务器
     User 同步用户一般为root
     ServerAliveInterval 60
     ServerAliveCountMax 10

2, 同步目标电脑,编辑/etc/ssh/sshd_config

ClientAliveInterval 60
ClientAliveCountMax 10

3,重启服务

Related content