昨天發現我阿裡雲的cpu莫名偏高,參見提問
問了阿裡雲的技術支持,木有回答到點上,他們說是內存太高,但是我開了swap分區之後,也沒有見到cpu使用率降低。
經過測試,發現,這個現象適合我寫的一個進程守護腳本相關,誰能解釋一下?
腳本如下:
#!/bin/bash
while true
do
process=ps -ef|grep /opt/tomcat7|grep -v grep
if [ -z "${process}" ];then
sleep 10
nohup /opt/tomcat7/bin/catalina.sh start & > /tmp/1.txt
fi
done
你這跑死循環,吃掉CPU很正常吧。