Stop an application that is running with PM2?

Answered
suparman21 asked this question 1 year, 5 months ago
suparman21 on Dec 13, 2021

If an application is running using PM2, how do you stop it?

2 suggested answers
itsbambi on Dec 15, 2021
pm2 stop your_app_name

This command tells PM2 to stop the application with the name your_app_name.

0 replies
nick on Dec 15, 2021

Stop a single application:

pm2 stop <app-name>

Stop all applications:

pm2 stop all
0 replies
Answered