Operating System - HP-UX
1828411 Members
3991 Online
109977 Solutions
New Discussion

Error message keep showing at console

 
SOLVED
Go to solution
take2mir
Advisor

Error message keep showing at console

Hi,
I would like to ask for your help. I tried to log in through console to my server HP-UX 10.20 but I keep receiving error message as below:

Vxfs: mesg 001: vx_nospace -/dev/vg02/lvol6 file system full

Vxfs: mesg 001: vx_nospace - /dev/vg02/lvol9 file system full

How should I stop this error message from coming to the console screen? It really distrubing me.

One more. Are these file system full error have any related to telnet problem? Because I cannot telnet at all to this server.

Thank you.
4 REPLIES 4
Dennis Handly
Acclaimed Contributor
Solution

Re: Error message keep showing at console

You need to immediately cleanup these two filesystems. Which is lvol6 and lvol9?
Try "bdf -l".

>How should I stop this error message from coming to the console screen?

You make more space available or clean up large files. Or kill runaway processes that are using up your disk space.

>Are these file system full error have any related to telnet problem?

Very likely. This symptom has been mentioned.
Dennis Handly
Acclaimed Contributor
take2mir
Advisor

Re: Error message keep showing at console

Tq Dennis for your fast reply. However, can we stop the error notification from come out to the console? It keeps come out non stop.
Dennis Handly
Acclaimed Contributor

Re: Error message keep showing at console

>can we stop the error notification from come out to the console?

Shutdown the system and reboot in single user mode? Try "init -s".

You can kill syslogd, I'm not sure if that will stop them:
kill $(< /var/run/syslog.pid)

You might be able to comment out a line like:
*.alert /dev/console
from /etc/syslog.conf. Then do:
kill -HUP $(< /var/run/syslog.pid)

This will cause syslogd to reread the changes.
But you still have to fix the problem.