- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: error in syslog mesg 001: vx_nospace
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
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
06-20-2003 02:05 AM
06-20-2003 02:05 AM
error in syslog mesg 001: vx_nospace
vmunix: msgcnt 1 vxfs: mesg 001: vx_nospace - /dev/root file system full (1 block extent)
But i can find anything wrong.
Does somebody know this error and solution?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2003 02:08 AM
06-20-2003 02:08 AM
Re: error in syslog mesg 001: vx_nospace
You probably had a crash that was writing a core dump into your root file system. Check your bdf output now to see if / is OK or if it's nearly full (like greater than 95%). Also make sure it's actually mount as / rather than /dev/root.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2003 02:16 AM
06-20-2003 02:16 AM
Re: error in syslog mesg 001: vx_nospace
Check for the timestamp.
Sometime or now your / file system has crossed 100%.
Also,
when you go into lvm maintenance mode the / file system gets mounted as /dev/root.
Just do a
#mv /etc/mnttab /etc/mnttab.old
#mount -a
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2003 02:57 AM
06-20-2003 02:57 AM
Re: error in syslog mesg 001: vx_nospace
So that not the problem.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2003 04:06 AM
06-20-2003 04:06 AM
Re: error in syslog mesg 001: vx_nospace
There may not be anything wrong right now, but at some point there was.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2003 04:32 AM
06-20-2003 04:32 AM
Re: error in syslog mesg 001: vx_nospace
A runaway process could be the cause for / filling up.
A malformed backup, /devrmt/0mn, for example, often happens.
The time stamp will allow cross referencing into other logs. You should check the cron log, /var/mail/root and /etc/opt/resmon/log/*.
find / -xdev -ctime 0 (* files accessed today in root *)
find /dev -type f (* find files that don't belong in /dev *)
quot / (* find owners with files in / *)
du -x / | sort -rn | more (* big files in / *)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2003 08:50 AM
06-21-2003 08:50 AM
Re: error in syslog mesg 001: vx_nospace
# vgchange -a y vg00
# vgdisplay vg00 (verify that Cur PV = Act PV, if not you have a ghost disk)
# lvdisplay -v /dev/vg00/lvol3 |more (verify the PEs)
# lvlnboot -v (to make sure root, boot, swap & dump are seated were they should be)
.: verfiy in fstab how lvol3 is supposed to be mounted
# mv mnttab to mnttab.old
# mount -a
# mount -p
Ur done! if the above doesnot help, call HP!
Cheers,
T?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2003 10:25 AM
06-21-2003 10:25 AM
Re: error in syslog mesg 001: vx_nospace
1) Check why root (/) is mounted on /dev/root instead of /dev/vg00/lvol3? This is normal after a system LVM maintenance mode boot or a system crash. The issue is root file system was unable to access /dev/vg00/lvol3 device file during it's last boot. One possible solution is to remove and recreate /etc/mnttab:
# mv /etc/mnttab /etc/mnttab.old
# mount -a
This will put root file system back to vg00/lvol3 if there is no other issue.
2) If that doesn't solve the problem, I would boot in single user mode OR lvm maintenance mode. Then check the root file system with fsck and see if that fix or solve the issue. Again, if it mounts on /dev/root, recreate mnttab file.
3) If that also didn't help, I woukd consider reloading the system from a make_tape_recovery tape. That will create new file system and fix any software errors on it.
4) If still problem exists, I would consider changing the root disk.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2003 10:46 AM
06-21-2003 10:46 AM
Re: error in syslog mesg 001: vx_nospace
Looks like in some moment your /dev/root
was full it depend on when this entry shown.
Could be that some process write to and stoped/removed the data.
Maybe you run in cron remove of core files?
Caesar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2003 06:21 AM
07-24-2003 06:21 AM
Re: error in syslog mesg 001: vx_nospace
vxfs: mesg 001: vx_nospace - /dev/root file system full (1 block extent)
The reason I found out was that my / directory is 100%. And I was wondering if any of you guys know how would I know what filled up my / directory and how to clear up this problem?
thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2003 06:27 AM
07-24-2003 06:27 AM
Re: error in syslog mesg 001: vx_nospace
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2003 06:35 AM
07-24-2003 06:35 AM
Re: error in syslog mesg 001: vx_nospace
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2003 06:42 AM
07-24-2003 06:42 AM
Re: error in syslog mesg 001: vx_nospace
otherwise have u mounted any LVOL on /dev/root ?.
Possibility ?.
Could it be that the core file was getting created by some application and could not complete writing as the FS was full - and the application removed the partially written core.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2003 07:07 AM
07-24-2003 07:07 AM