Dev0ps

[root@pcidata-jenkins ansible_playbooks]# ps aux|grep rsync
root      1799  0.0  0.0 114652   480 ?        Ss   Jun29   0:00 rsync --daemon
root     61754  0.0  0.0 112664   972 pts/2    S+   11:17   0:00 grep --color=auto rsync
[root@pcidata-jenkins ansible_playbooks]# kill -9  1799
You have new mail in /var/spool/mail/root
[root@pcidata-jenkins ansible_playbooks]# rsync --daemon
failed to create pid file /var/run/rsyncd.pid: File exists
[root@pcidata-jenkins ansible_playbooks]# ps aux|grep rsync
root     61790  0.0  0.0 112660   968 pts/2    S+   11:18   0:00 grep --color=auto rsync
[root@pcidata-jenkins ansible_playbooks]# rsync --daemon
failed to create pid file /var/run/rsyncd.pid: File exists

#删除 /var/run/rsyncd.pid即可
[root@pcidata-jenkins ansible_playbooks]# rm -fr /var/run/rsyncd.pid
[root@pcidata-jenkins ansible_playbooks]# rsync --daemon

分类:

rsync

技术点:

相关文章:

  • 2022-01-14
  • 2021-12-14
  • 2021-04-05
  • 2021-08-03
  • 2021-07-01
  • 2022-01-13
  • 2021-05-03
  • 2021-08-24
猜你喜欢
  • 2021-07-29
  • 2021-08-25
  • 2021-10-30
  • 2021-07-10
  • 2021-04-06
  • 2022-01-02
  • 2021-05-13
  • 2021-07-14
相关资源
相似解决方案