Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- grep
- netsh
- tomcat
- ssh
- 네트워크
- lsof
- Mac
- bash
- maVen
- Windows
- Windows 10
- import
- profile
- Eclipse
- xargs
- JavaScript
- context
- Source
- 단축키
- port
- VirtualBox
- vscode
- IntelliJ
- 줄바꿈 문자
- resource
- GIT
- find
- Quartz
- plugin
- web.xml
Archives
- Today
- Total
develog
[linux] 아파치 웹서버 동시접속 세션수 확인 본문
아파치 웹서버 동시접속 세션수 확인
netstat -nap | grep :80 | grep ESTABLISHED | wc -l
1초 마다 확인
watch -n 1 'netstat -nap | grep :80 | grep ESTABLISHED | wc -l'
'OS & Shell > Linux' 카테고리의 다른 글
[linux] 시스템 정보 확인 (0) | 2012.04.12 |
---|---|
[linux] 디렉토리 구조 (0) | 2012.04.12 |
리눅스 명령어 요약정리 (0) | 2012.04.12 |
CPU 정보 (0) | 2012.04.10 |
램 용량 확인 (0) | 2012.04.10 |
Comments