Operating System - HP-UX
1758784 Members
2855 Online
108875 Solutions
New Discussion юеВ

error: msgcnt 478 vxfs: mesg 001: vx_nospace - /dev/vg00/lvol4 file system full (1 block extent)

 
SOLVED
Go to solution
praveen..
Super Advisor

error: msgcnt 478 vxfs: mesg 001: vx_nospace - /dev/vg00/lvol4 file system full (1 block extent)

$

msgcnt 478 vxfs: mesg 001: vx_nospace - /dev/vg00/lvol4 file system full (1 block extent)



msgcnt 480 vxfs: mesg 001: vx_nospace - /dev/vg00/lvol8 file system full (1 block extent)

$ tail -40 jsjob.20060731231447.dsf_create_smart_dwh_and_views.sh.log

/condition positiveISegment I_SEGMENT>0

/* summarize total I_AMT, total I_OTHER_MEASURE */

/infile - 24 fixed

/include positiveISegment

/reformat S_ID,I_SEGMENT





/outfile -









/end



SyncSort options validated. Processing continues.

SyncSort : (SWEXH) all available work space is exhausted

SyncSort has aborted

------------------------------------------------------------

EXIT CODE: 111

------------------------------------------------------------

FAILED!

****************************************************************************************************************************************************************

while i have free space in /dev/vg00/lvol4 & /dev/vg00/lvol8
4 REPLIES 4
Steven E. Protter
Exalted Contributor
Solution

Re: error: msgcnt 478 vxfs: mesg 001: vx_nospace - /dev/vg00/lvol4 file system full (1 block extent)

Shalom,

/dev/vg00/lvol4

The fs sitting there IS full.

Your script terminated improperly but the file handle is still open, therefore the space is still in use.

fuser -cu /filesystem_mounted_on_lvol4

Kill the right session the space will become available.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
praveen..
Super Advisor

Re: error: msgcnt 478 vxfs: mesg 001: vx_nospace - /dev/vg00/lvol4 file system full (1 block extent)

#bdf
/dev/vg00/lvol8 4718592 3850968 860896 82% /var
/dev/vg00/lvol4 524288 62656 458704 12% /tmp

lvol8 is mounted on /var * lvol4 is mounted on /tmp

should i give this command?
# fuser -cu /var
# fuser -cu /tmp

please suggest, it is very urgent for me..

Thanks in advance
Arunvijai_4
Honored Contributor

Re: error: msgcnt 478 vxfs: mesg 001: vx_nospace - /dev/vg00/lvol4 file system full (1 block extent)

Hi,

# fuser -u will show the processes running in the particular lv. You can kill using # fuser -ku

-Arun
"A ship in the harbor is safe, but that is not what ships are built for"
praveen..
Super Advisor

Re: error: msgcnt 478 vxfs: mesg 001: vx_nospace - /dev/vg00/lvol4 file system full (1 block extent)

i tried with reboot, but it does not work,
then
i have extended the file system size and it works, thanks everybody