WR21 - Processes management

Device: Digi WR21
Environment: telnet / modem website -> Execute Command

Questions:

  1. how can I find the process that is running my python script?
  2. how can I kill it?

I tried commands like: status and kill but they didn’t work from telnet.

“pycfg scripts” will show you python scripts running.

“python kill thenameofyourscript.py” will kill the script.

“python kill” or “python kill all” will kill all scripts.

1 Like

Thanks, works perfect.