- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- lv and filesystem mismatch
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
01-08-2004 01:25 AM
01-08-2004 01:25 AM
I am attempting to increase a filesystem to match the logical volume that is mounted on it and I receive the following error:
s fsadm -F vxfs -b 258M /u001/app/oracle/admin/t656b
vxfs fsadm: /dev/vg_oracle_656/rlv_u001_t656b_admin is currently 209920 sectors - size will be increased
vxfs fsadm: write failure at block 4458494 : No such device or address, what do I need to do to correct it? Thanks in advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2004 01:31 AM
01-08-2004 01:31 AM
SolutionAlso I would suggest you actually do the calculation : LVextent X PV Size X 1024
and place that number in the -b part of your fsadm command. That way it'll be more accurate and fsadm won't try to grow it bigger than what it really is
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2004 01:35 AM
01-08-2004 01:35 AM
Re: lv and filesystem mismatch
I think you should use 256 Mb. Look at lvdisplay for the lines with Current LE or LV Size.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2004 01:36 AM
01-08-2004 01:36 AM
Re: lv and filesystem mismatch
fsadm -F vxfs -b
...but just to be curious...Is this on a disk array? and is it by any chance EMC?..cause that failure to write at block makes me wonder..
Rita
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2004 01:37 AM
01-08-2004 01:37 AM
Re: lv and filesystem mismatch
1) Did you do a lvextend before fsadm. If not, try that 'lvextend -L new_size lvol_name
2) Check if you have required free space to extend the FS
3) Check the file system mount point you gave is right
4) Apply patches.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2004 01:37 AM
01-08-2004 01:37 AM
Re: lv and filesystem mismatch
what is the exact size of lv?
Please past here
# lvdisplay /dev/vg_oracle_656/lv_u001_t656b_admin
and
# bdf
Anyway Marco is right. Maybe you is trying to extend the filesystem to a wronged size.
Best regards,
Ettore
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2004 01:38 AM
01-08-2004 01:38 AM
Re: lv and filesystem mismatch
Check your lvdisplay/vgdisplay output to verify...
Ta!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2004 01:54 AM
01-08-2004 01:54 AM
Re: lv and filesystem mismatch
Just a query, You are getting error after the success message. It means your filesystem is getiing increased? Could you please check up by bdf command.
If it already increased try with fsck. If not increased you may start from lvextend command once again to see real problem.
Good luck
Shahul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2004 03:23 AM
01-08-2004 03:23 AM
Re: lv and filesystem mismatch
1) What was the lvextend commmand you used? Can you please post it here? that may give a clue...What was the exact amount you used for the size?
2) I believe the previous posters are right... what is your bdf output say? You may be at >98% used in the filesystem which can prevent you from increasing the mounted filesystem.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2004 11:08 AM
01-08-2004 11:08 AM
Re: lv and filesystem mismatch
# fsadm -e -E -d -D filesystem
then :
# fsadm -F vxfs -b 258M filesystem
if that doesnot work :
# umount /mount_point
# lvextend -L Megabytes /dev/vgname/lvolname
# extendfs -F vxfs /dev/vgname/rlvolname
# mount /mount_point
# bdf to verify
Now if all fails,and u ve got a recent bk it might be faster for you to :
# lvremove /dev/vgname/lvolname
# lvcreate -L Megabytes -n lvname /dev/vgname
# newfs -F vxfs /dev/vgname/rlvolname
# mount /dev/vgname/lvolname /mount_point
remember to modify /etc/fstab accordingly
T+
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2004 02:50 AM
01-09-2004 02:50 AM