- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Strange syslog/dmesg message
Categories
Company
Local Language
Forums
Discussions
- Integrity Servers
- Server Clustering
- HPE NonStop Compute
- HPE Apollo Systems
- High Performance Computing
Knowledge Base
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Knowledge Base
Forums
Discussions
- Cloud Mentoring and Education
- Software - General
- HPE OneView
- HPE Ezmeral Software platform
- HPE OpsRamp Software
Knowledge Base
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 05:18 AM
07-11-2005 05:18 AM
from syslog
vmunix:
full (1 block extent)vmunix: vxfs: mesg 001: vx_nospace - /dev/root file system
from dmesg:
vxfs: mesg 001: vx_nospace - /dev/root file system full (1 block extent)
the machine however does not mount the / filesystem in /dev/root. what does this mean? also the core file(from the appln) is directed to /dev/root. any thoughts please..
Many Thanks
Joe
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 05:22 AM
07-11-2005 05:22 AM
Re: Strange syslog/dmesg message
Usually this results from the machine being brought up to multi-user mode directly from LVM maintenance mode. In LVM maintenance mode, / gets mounted as /dev/root and the correct way to return to multi-user mode is to reboot, rather than doing an init 3. You need to find and clear out what is filling up / and then reboot.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 05:30 AM
07-11-2005 05:30 AM
Re: Strange syslog/dmesg message
Thanks
Joe.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 05:35 AM
07-11-2005 05:35 AM
Re: Strange syslog/dmesg message
Is it possible that this system was brought up from LVM maintenance sometime in the past?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 05:44 AM
07-11-2005 05:44 AM
Re: Strange syslog/dmesg message
dd if=/dev/zero of=/zeroes bs=32k
It errored out with:
msgcnt 2 vxfs: mesg 001: vx_nospace - /dev/root file system full (1 block extent)
I/O error
739+0 records in
738+1 records out
and - my syslog has the following new entry in it now:
Jul 11 14:39:27 testserv vmunix: msgcnt 1 vxfs: mesg 001: vx_nospace - /dev/root file system full (1 block extent)
So, under the covers - /dev/root and / are the same thing. Nothing to worry about.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 05:55 AM
07-11-2005 05:55 AM
Re: Strange syslog/dmesg message
If I remember correctly this use to be in the cases where you do not have LVM config on your root disk. In this event you do not have multiple file systems for /var , /usr , /home & all . All these are clubbed in a single file system & the device file for that should be /dev/root.
Output of bdf will clarify that.
Which OS version it is ?
Post the output of bdf.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 06:06 AM
07-11-2005 06:06 AM
Re: Strange syslog/dmesg message
There is a line
dev_t rootmir;
and later on...
dev_t rootdev = makedev(-1,0xFFFFFF);
and - looking at /dev/root -
ls -al /dev/root
brw-r----- 1 bin sys 255 0xffffff Feb 26 2004 /dev/root
I can *guess* that /dev/root is created during the boot process as some sort of a mirrored memory pointer to "/" - or vice-versa, and the /dev/root block special file is left on the system as a default way to find the root file system. Could this be how the system gets to boot from an lvm device before it's even loaded? My guess is that it has something to do with it. Of course, that theory could be all wet. :-)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 07:13 AM
07-11-2005 07:13 AM
Re: Strange syslog/dmesg message
full (1 block extent)vmunix: vxfs: mesg 001: vx_nospace - /dev/root file system
this is the timestamp. It was not after the system brought up from LVM maint mode. this happ after there was an installation of an application.
Thx
Joe
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 07:16 AM
07-11-2005 07:16 AM
Re: Strange syslog/dmesg message
Can you attach the bdf output. You will notice some file system 100% full there.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 07:17 AM
07-11-2005 07:17 AM
Re: Strange syslog/dmesg message
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 07:42 AM
07-11-2005 07:42 AM
Re: Strange syslog/dmesg message
I saw that you gave Pete just one point but you will see he is right.
I had the same your problem (identic), infact in that instance no /dev/root was mounted on my system but continuously that message was logged in syslog.log.
As Pete said you need to find and clear out what is filling up /.
I would suggest you to begin by find command, for example:
find / -size +10000c
(to find what file is bigger than 10M),
find / -size +100000c
(to find what file is bigger than 100M)
and so on.
Hope that helps you.
Best regards,
Fabio
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 07:46 AM
07-11-2005 07:46 AM
Re: Strange syslog/dmesg message
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 10:27 AM
07-11-2005 10:27 AM
Re: Strange syslog/dmesg message
So the message means: your / filesystem is (or was) full. To locate the source of the problem, do NOT look for big files! Many sysadmins have purged big files like vmunix or vg00.conf, only to regret the outcome. Instead, use du to analyze the directories and then look inside the biggest directories:
du -kx / | sort -rn | more
This will show you the largest directories starting with / and working down. To sort the files inside a specific directory, do this:
ll | sort -rnk5 | more
then look at the biggest file(s) to see if it is a mistake and can be removed.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 11:07 AM
07-11-2005 11:07 AM
Re: Strange syslog/dmesg message
Thanks
Joe
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 11:15 AM
07-11-2005 11:15 AM
Re: Strange syslog/dmesg message
file core
(the file command decodes the core file as to program name and error code)
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 11:23 AM
07-11-2005 11:23 AM
Re: Strange syslog/dmesg message
We still have the core file (just moved). it was from java. what i do not understand is we have already had this core issue before and are re-directing the core file to a tmp directory and also limiting it to a particular size. wonder how it landed in /.
Thanks
Joe.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 11:47 AM
07-11-2005 11:47 AM
SolutionBill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 11:56 AM
07-11-2005 11:56 AM
Re: Strange syslog/dmesg message
Best Regards
Joe