Changes between Initial Version and Version 1 of jazz/12-06-11
- Timestamp:
- Jun 11, 2012, 4:32:51 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
jazz/12-06-11
v1 v1 1 = 2012-06-11 = 2 3 == hadoop.nchc.org.tw == 4 5 * 有時候 IOWait 太多或者 CPU Load 太重,往往都會造成無法透過 SSH 管理主機的困擾,所以嘗試透過 renice 指令,把 sshd 的優先權提高,後續再看這樣做是否有幫助。 6 * [參考] [http://www.davidgrant.ca/starting_sshd_with_a_higher_nice_value Starting sshd With a Higher Nice Value] 7 * 這邊文章提到用 cron 定時把 sshd 的優先權提高。(主要應該是因為 pid 會改變) 8 {{{ 9 #!sh 10 ps -o pid -C sshd --no-heading | xargs renice 10 11 }}}