/dev/mapper/VolGroup-lv_root 100%

It's depends on your data on /var specially your mysql, but if you want to increase that, the easiest and fastest option is to create a directory in /home and move all data or just only mysql data of /var to that directory and create soft link of /var to /home/var. The steps will be as follows.

In other hand, You most likely have a lot of temporary files somewhere on your root.
Check size of your temporary by the following command:
Code:
du -hs /tmp /var/tmp
Otherwise check the /var directories with:
Code:
du -hs /var/*
If you run your program as root it could be somewhere in /root.
 
Last edited:
i think is exim problem. i solve the problem by following

cd /var/spool
mv exim exim.old
mkdir -p exim/input
mkdir -p exim/msglog
mkdir -p exim/db
chown -R mail:mail exim

after that i remove my user email not working

any solutions to fix this?
 
hi,

[root@server3 spool]# du -hs /tmp /var/tmp
3.5G /tmp
4.0K /var/tmp
[root@server3 spool]# du -hs /var/*
4.0K /var/account
45M /var/cache
4.0K /var/crash
8.0K /var/db
8.0K /var/empty
4.0K /var/games
15G /var/lib
4.0K /var/local
16K /var/lock
26G /var/log
4.0K /var/logs
0 /var/mail
187M /var/named
4.0K /var/nis
4.0K /var/opt
4.0K /var/preserve
204K /var/run
167M /var/spool
4.0K /var/tmp
88M /var/www
4.0K /var/yp
[root@server3 spool]#

any idea how to solve this ?
 
Its something in /var/log

26G /var/log

You might want to run du in that folder to see what is so big.
 
Back
Top