Traffic SEO Magic avatar
Traffic SEO Magic

Deprecated

Pricing

$50.00/month + usage

Go to Store
Traffic SEO Magic

Traffic SEO Magic

Deprecated

Developed by

metaverse-digital-creative

metaverse-digital-creative

Maintained by Community

Elevate your website's potential with the Ultimate Traffic Surge! Experience a surge in targeted visitors, simulate real-world page views, and fortify your site against potential threats. Designed to generate millions of visits, it's the go-to tool for skyrocketing your online visibility and engagem

0.0 (0)

Pricing

$50.00/month + usage

1

Total users

17

Monthly users

12

Last modified

2 years ago

Fork mode

pm2 start app.js --name my-api # Name process

Cluster mode

pm2 start app.js -i 0 # Will start maximum processes with LB depending on available CPUs pm2 start app.js -i max # Same as above, but deprecated. pm2 scale app +3 # Scales app up by 3 workers pm2 scale app 2 # Scales app up or down to 2 workers total

Listing

pm2 list # Display all processes status pm2 jlist # Print process list in raw JSON pm2 prettylist # Print process list in beautified JSON

pm2 describe 0 # Display all information about a specific process

pm2 monit # Monitor all processes

Logs

pm2 logs [--raw] # Display all processes logs in streaming pm2 flush # Empty all log files pm2 reloadLogs # Reload all logs

Actions

pm2 stop all # Stop all processes pm2 restart all # Restart all processes

pm2 reload all # Will 0s downtime reload (for NETWORKED apps)

pm2 stop 0 # Stop specific process id pm2 restart 0 # Restart specific process id

pm2 delete 0 # Will remove process from pm2 list pm2 delete all # Will remove all processes from pm2 list

Misc

pm2 reset