- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- HP UNIX Crash - out of space
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-21-2002 08:15 AM
06-21-2002 08:15 AM
My HP UNIX machine crashed. In the reboot process it stops and shows this error:"vxfs: mesg 001: vx_nospace - /dev/vg00/lvol4 file system full (1 block extent)"
I know it??s run out of space but how can I restart the machine now ?
Please help, thanx Eberhard
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2002 08:27 AM
06-21-2002 08:27 AM
SolutionTo bring the system up in single-user mode do:
reboot the system and when it prompts you to interrupt the boot sequence, do it.
Then at the prompt enter "bo pri", then say Y that you want to interact with the IPL and then type "hpux -is" to boot single-user.
Once you are at the # prompt do a 'mount -a' and this will mount only your VG00 since all other VGs are not activated yet. Once you are at this point you can clean up whatever directory lvol4 is.
Once it is clean, reboot and let it boot multi-user.
Good luck.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2002 08:30 AM
06-21-2002 08:30 AM
Re: HP UNIX Crash - out of space
Boot the system in single user mode and then fsck / mount the lv in question and do a little bit of cleanup. Then just init to run level 3.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2002 08:33 AM
06-21-2002 08:33 AM
Re: HP UNIX Crash - out of space
Boot in the single user mode. Interupt the boot sequence and at the ISL prompt
ISL> hpux -is
This will boot your system in single user mode.
Do a fsck on /dev/vg00/lvol4 and then you can mount the filesystem lvol4 and clear some space in it.
May be you might look for some big files or crash files. /dev/rmt/om or some log files also.
Check the /var/adm/crash directory also if the /var filesystem is mounted by lvol4.
Then if the lvol4 gets mounted and you clear the space, you can give shutdown and restart ur system or do an init 3
Piyush
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2002 08:35 AM
06-21-2002 08:35 AM
Re: HP UNIX Crash - out of space
You can still boot the system.
cd to the directory lvol4 resides in
Presumably if it happened after a crash, it is /var
If it is, cd /var/adm/crash and remove any old core.# directories. I.e: rm -r core*
If it is another directory, cd into it, and use: du -s * | sort -n
This will give you a sorted list of all files and directories in order (smallest ot largest)
in that directory. You can use this to help find any possible offending files.
Good luck,
Kel
(Note: If you have a service contract, you can run q4 to debug and send the crash details to HP if you need more information as to why it crashed. Otherwise, the core files are probably unneccessary.)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2002 08:42 AM
06-21-2002 08:42 AM
Re: HP UNIX Crash - out of space
If it is the /var system that has got ful then run this command to find out which files are occupying more space by using
#du -kx /var | sort -rn > /tmp/dutmp.log
Check the dutmp.log file and check for big log files and crash files and trim those files.
Check for the size of wtmp, btmp, syslog.log also.
Further you can run the cleanup utility also.
Try to find out why your lvol4 got full.
Piyush
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2002 08:45 AM
06-21-2002 08:45 AM
Re: HP UNIX Crash - out of space
Check the files in /var/tombstones for any info on the crash.
You may also consider increasing the size of /tmp.
HTH
Marty