Linux ssh bash fork retry: no child processes

后端 未结 3 1735
南笙
南笙 2021-02-14 06:40

I am on arch linux, accessing an account on a server over SSH. I have run a bash script containing recursion that results in an infinite loop of \"no such file or directory\" wh

相关标签:
3条回答
  • 2021-02-14 07:11

    Run ps faux (you might need to run it from other user or with sudo) and search for the offending process (may look like a big branch of the tree)

    If needed, kill the process via its PID

    0 讨论(0)
  • 2021-02-14 07:13
    1) ps faux  (find PID and place in second command)
    2) kill [PID]
    
    
    If any virus attack then again this process come so you need to enable virus scanner on cpanel and scan and remove.
    
    Important:
    Hosting providers must install the following services for this interface to appear:
    
    The ClamAV Scanner plugin in WHM’s Manage Plugins interface (WHM >> Home >> cPanel >> Manage Plugins).
    The Exim Mail Server service on the server in WHM’s Service Manager interface (WHM >> Home >> Service Configuration >> Service Manager).
    
    0 讨论(0)
  • 2021-02-14 07:31

    Looks like you've caused a fork bomb. You can try the methods here to stop it, but you'll most likely end up needing to reboot.

    0 讨论(0)
提交回复
热议问题