- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- lvreduce issue
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-20-2005 10:47 AM
01-20-2005 10:47 AM
I need to know what it means when I tried to reduce this logical volumes in Hp unix 11.00.
I do have online JFS on it.
# fsadm -F vxfs -b 400 /tmp
fsadm: cannot shrink /dev/vgsm25/rlvol4 - upgraded fs - inodes are currently in use.
#
Any help appreciated !
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2005 11:00 AM
01-20-2005 11:00 AM
SolutionIt means that the space you're trying to remove is in use.
What's the usage on that FS now?
Are you trying to reduce more that what's already in use?
If not your only hope is to defrag the FS with
fsadm -F vxfs -d -D -e -E /mnt_point
and it may take several passes.
But my rules-of-thumb are:
1) You *must* be JFS 3.3 v4 or higher
fstyp -v /mnt_point
2) Anything above 50% usage is still touch-and-go.
Check the actual layout usage with
lvdisplay -v /dev/vg_name/_lv_name
and note just what LEs are in use because it's going to lop them off from the back end forwards.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2005 12:24 PM
01-20-2005 12:24 PM
Re: lvreduce issue
This filesystem usage is less than 1 % only.
But I do see JFS as old version.. will it help me?
#swlist |grep -i jfs
B3929BA B.11.00 HP OnLineJFS (Advanced VxFS)
B5118BA B.11.00 HP OnLineJFS (Advanced VxFS)
PHKL_22393 1.0 VxFS 31 OnlineJFS cumulative patch
# fstyp -v /dev/vgsm25/rsmcores
vxfs
version: 3
f_bsize: 8192
f_frsize: 1024
f_blocks: 1280000
f_bfree: 1168168
f_bavail: 1095158
f_files: 324808
f_ffree: 292040
f_favail: 292040
f_fsid: 1074135052
f_basetype: vxfs
f_namemax: 254
f_magic: a501fcf5
f_featurebits: 0
f_flag: 0
f_fsindex: 6
f_size: 1280000
#
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2005 01:13 PM
01-20-2005 01:13 PM
Re: lvreduce issue
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2005 02:11 PM
01-20-2005 02:11 PM
Re: lvreduce issue
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2005 02:11 AM
01-21-2005 02:11 AM
Re: lvreduce issue
-b option give space in bloc.
A good way to convert the size in MB is to use -b $((400 * 1024)).
man fsadm_vxfs gives more details.
You can maybe have this error also if you haven't Online JFS package.
I hope it will help you !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2005 07:37 PM
01-23-2005 07:37 PM
Re: lvreduce issue
Make sure that there isn't any process or user access to /tmp file system...
Try to kill:
#fuser -cu /tmp
#fuser -kcu /tmp
and try to reduce.......
Notice: need to backup any needed file before reduce...some time you will lost all of the data...
Goodluck
Best and regard,
HoangChiCong