Link to home
Start Free TrialLog in
Avatar of asaivan
asaivanFlag for United States of America

asked on

Linux (XenServer) Input/Output Error

Greetings,

I was happily coding along yesterday when my virtualized web server stopped responding to requests.  I SSHed into the host and got the following error:

 bash: /sbin/reboot: Input/output error

I had to restart using

echo 1 > /proc/sys/kernel/sysrq
echo b > /proc/sysrq-trigger

Once the server restarted, the system seemed to work OK.  But what's going on?  Is there a hard drive failure imminent?  How can I tell?
ASKER CERTIFIED SOLUTION
Avatar of rpassero
rpassero
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Have you searched the system logs for clues?
Avatar of asaivan

ASKER

/var/log/messages was untelling...

Do you have any other ideas where I might find some clues?
No. I'd look in allt the logs that's available. If I didn't find anything there I wouldn't have a clue.
Try a grep "|error" /var/log/* > errors.log

Then vi /var/log/errors.log
Avatar of asaivan

ASKER

Thanks for the help...