본문 바로가기
Server

Nginx socket 개수 확인

by 전재훈 2020. 2. 23.
반응형

1. nginx를 통해 맺은 커넥션 확인

$ netstat -napo | fgrep nginx

 

2. TCP 상태별 개수를 확인

$ netstat -napo | fgrep nginx | awk '{print $6}' | sort | uniq -c

 

참고 : https://hodolman.com/15

반응형

댓글