hichkas
01-19-2010, 10:25 AM
Hi,
I have XenServer 5.0.0 and when I connect to the server through XenCenter it shows alert saying:
"File System on Control Domain Full...."
we find many logs in /var/log,
can i remove log's , no problem?>
Or
Can anyone let me know how to fix it?
:eek:
VIPoint
01-19-2010, 10:44 AM
Hichkas,
It seems that your file system is full. SSH to the server and use the command df -h and see if any of the filesystem is at 100% or not.
You can remove the log files. You can take a backup of the log files in any free file system and remove the content of the log files to free up some space.
Hostwaresupport
01-19-2010, 11:13 AM
You should backup your latest logs and delete logs file. Like, if you have to backup latest 1500 lines of /var/log/messages, you can use following command.
cd /var/log
tail -1500 messages > test
Now, you have backup latest 1000 lines from messages file. After this, you can delete /var/messages and rename test to /var/messages, so that new logs will be generated in correct path.
In this way, you can keep track of your latest logs and can free up space on your server.