Process (1) 썸네일형 리스트형 process, thread 수 확인 및 변경 1. process의 thread count 확인 ps -o nlwp or ps -o thcount watch ps -o thcount ** nlwp == thcount 같은 의미 2. 프로세별 thread count 확인 > ps -eo nlwp,command 3. 전체 thread count > ps -eLf | wc -l or > ps -eo nlwp | tail -n +2 | awk '{ num_threads += $1 } END { print num_threads }' 4. 사용자별 thread count 수 > ps h -Led -o user | sort | uniq -c | sort -n 5. 서버상의 max process(실제 thread 수) 5.1 확인 > cat /proc/sys/ke.. 이전 1 다음