Reputation: 1
I am trying to make a kill switch for my Discord Bot that uses PM2 to keep it running. After I use the command, PM2 just restarts the bot. How do I kill the process until I restart it manually?
try to best experimentand expecting best suggestions
Upvotes: -1
Views: 41
Reputation: 151
You can pass --no-autorestart
flag to your pm2 command when you run your script.
Upvotes: 0