= 2012-06-11 = == hadoop.nchc.org.tw == * 有時候 IOWait 太多或者 CPU Load 太重,往往都會造成無法透過 SSH 管理主機的困擾,所以嘗試透過 renice 指令,把 sshd 的優先權提高,後續再看這樣做是否有幫助。 * [參考] [http://www.davidgrant.ca/starting_sshd_with_a_higher_nice_value Starting sshd With a Higher Nice Value] * 這邊文章提到用 cron 定時把 sshd 的優先權提高。(主要應該是因為 pid 會改變) {{{ #!sh ps -o pid -C sshd --no-heading | xargs renice 10 }}}