Linux 프로세스 관리 완벽 가이드
Linux 프로세스 관리
서버 운영에 필수적인 Linux 프로세스 관리를 다룹니다.
프로세스 확인
# 실행 중인 프로세스 확인
ps aux
# 실시간 모니터링
top
htop
# 특정 프로세스 찾기
ps aux | grep nginx
PM2로 Node.js 관리
pm2 start app.js --name "my-app"
pm2 list
pm2 logs my-app
pm2 restart my-app
systemctl 서비스 관리
sudo systemctl start nginx
sudo systemctl enable nginx
sudo systemctl status nginx