- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- online JFS problem
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
04-09-2002 04:14 AM
04-09-2002 04:14 AM
online JFS problem
I am using online JFS to increase "var" filesystem size. Here are the steps which I follows :-
# fsadm -d -D -e -E /var
# fsadm -b 5000000 /var - to increase the size to 5GB. But it doen't go and gives me the following error :-
# fsadm -F vxfs -b 2205219 /var
vxfs fsadm: /dev/vg00/rlvol8 is currently 2097152 sectors - size will be increased
vxfs fsadm: write failure at block 6399521 : No such device or address
Is there any solution for this prob OR pl let me know how to use online JFS?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2002 04:20 AM
04-09-2002 04:20 AM
Re: online JFS problem
the -b option expects to be told the number of blocks in 1K blocks, so if you had extended your logical volume to size 5000MB, the fsadm command would be:
fsadm -F vxfs -b 5120000 /var
(5120000= 1024 * 5000)
HTH
Duncan
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2002 04:22 AM
04-09-2002 04:22 AM
Re: online JFS problem
You've forgotten something essential. Before doing the fsadm-command, you need to lvextend the logical volume. Example :
root/sv00127#lvextend -L 240640 /dev/vghsmcaches2/lv_hsmcaches2
root/sv00127#fsadm -F vxfs -b 246415360 /dbad_migratie
root/sv00127#cd /dbad_migratie
root/sv00127#bdf .
Filesystem kbytes used avail %used Mounted on
/dev/vghsmcaches2/lv_hsmcaches2
246415360 136954080 108606168 56% /dbad_migratie
Hope this helps,
Tom Geudens
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2002 04:38 AM
04-09-2002 04:38 AM
Re: online JFS problem
This is well documented at www.docs.hp.com
For examples
http://www.introcomp.co.uk/hpux/index.html
Steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2002 04:46 AM
04-09-2002 04:46 AM
Re: online JFS problem
You seem to have missed the lvextend part!
Here is a useful link :
http://us-support3.external.hp.com/cki/bin/doc.pl/sid=538bd0c101b2f8d168/screen=ckiDisplayDocument?docId=200000057272464
HTH
raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2002 04:51 AM
04-09-2002 04:51 AM
Re: online JFS problem
lvextend -L 5000 /dev/vg00/lvol8
Then you need to extend the filesystem:
fsadm -F vxfs -b 5000M /var
If your HP-UX version don't support the M-option:
fsadm -F vxfs -b 5120000 /var
Regards,
Trond
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2002 04:56 AM
04-09-2002 04:56 AM
Re: online JFS problem
If you did do the lvextend.
The filesystem can not be 100% full to extend the filesystem. It needs just a little bit of space in /var/lost+found.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2002 05:59 AM
04-09-2002 05:59 AM
Re: online JFS problem
you need to do following :
1. You have to extend the logical volume on which you want to extend the file system.
#lvextend -L 5000 -n lv_name /dev/vgxx
#fsadm -F vxfs -b 5120000 /var
you are all set now.
-pap
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2002 07:02 AM
04-09-2002 07:02 AM
Re: online JFS problem
Alternatively have u tried using SAM , this would take you out many hardships that you may face.
Manoj Srivastava