Real Time Scenario Based Linux Implementations
Real Time Scenario Based Linux Implementations
1. Kill the Process Consuming the Most Memory
Scenario:
Your application server is lagging. You suspect a memory-hogging process.
Command:
ps aux --sort=-%mem | head -n 5
kill -9 <PID>
Explanatio...
bittublog.hashnode.dev6 min read