For the purpose of load testing i created an API which request around 2000 bookings at a time and after hitting this API, server(AWS EC2 instance) reaches to the more than 20% of CPU consumption and consume almost all the memory(900/991M) of system. After that i was trying to restart node app with pm2 restart but it's not working and even "pm2 ls" and "pm2 log" commands are also not working. What can i do now to run my application again ? List of command which i already run on server.
pm2 restart pid && pm2 log pid
pm2 ls
pm2 log pid
ps -aux
orls
command is not executing anymore and gives me the error:-bash: fork: retry: Resource temporarily unavailable
– Alsatia