Rsync 服务器启动错误:failed to create pid file /var/run/rsyncd.pid: File exists
问题:linux下Rsync 服务器启动错误-->failed to create pid file /var/run/rsyncd.pid: File exists
解决方案:rm -rf /var/run/rsyncd.pid;再重新启动Rsync服务(rsync –daemon)
从配置文件中可以看出,rsync的日志文件位于/var/log/rsync.log
先查看日志信息。
2015/04/03 09:55:14 [13527] rsync: failed to create pid file /var/run/rsyncd.pid: No space left on device (28)
/*看出是缺磁盘空间了*/
2015/04/03 10:18:49 [22158] rsync: failed to create pid file /var/run/rsyncd.pid: File exists (17)
/*按上面的异常处理就可*/
恢复正常:
[root@linux03 log]# ps aux|grep rsync
root 22997 0.0 0.0 109908 552 ? Ss 10:21 0:00 rsync –daemon
root 24349 0.0 0.0 105536 952 pts/1 S+ 10:24 0:00 grep rsync