Xenで domainUにコンソールからログインできなくなった時の対処

Xen3.0 で xenconsole: Could not open tty `/dev/pts/1': No such file or directoy とかでて ログインできなくなった
原因は 長時間コンソールへのアクセスがないと xenconsoled が落ちるっぽい。

ps aux | grep xenconsoled
root      3998  0.0  0.0   3908   692 pts/0    R+   14:40   0:00 grep xenconsoled

ということで /etc/init.d/xend start をしてあげると、もう一度起動する

/etc/init.d/xend start
ps aux | grep xenconsoled
root      3961  0.0  0.0  12192   504 ?        Sl   14:34   0:00 xenconsoled --log none --log-dir /var/log/xen/console
root      3998  0.0  0.0   3908   692 pts/0    R+   14:40   0:00 grep xenconsoled