How to Force Stop an Unstoppable Node (Image) in PNETLab
Table of Contents
- Log in to your PNETLab CLI.
- Execute the command ps -aux. You can combine this with the grep command to quickly locate the node you want to stop. For example, ps -aux | grep <your node name>.
- Once you identify the unstoppable node, terminate one by one all related processes by running the command kill <process id>.
- If the process ID persists, use kill -9 <process id> to forcefully stop it.
- Return to the PNETLab web and make sure that the node has been successfully stopped.
Below is an example of the above guide:
Post a Comment