Simple web based application to manage PM2 processes
- make sure you have nodejs and npm installed
- create the app directory and navigate to it
sudo mkdir -p /var/www sudo chown $USER:$USER /var/www cd /var/www
- clone this repo
git clone https://github.com/mriza/wpm.git cd wpm
- Install Dependencies
npm install
- verify if application runs locally
Visit the app in your browser at:
node app.js
http://<server-ip>:3000
- start with pm2
pm2 start app.js --name "WPM PM2 Manager"
- save the process list
pm2 save
- follow the instruction to enable the service integrate with systemd.
- you can install reversed proxy like to serve the app to HTTP port or even set up HTTPS with it.