- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Online JFS
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
09-30-2004 04:18 AM
09-30-2004 04:18 AM
I installed Online JFS and i mirrored the bootdisk.I booted from the mirror disk.When i try to extend the filesystem size , it's not working. It's giving the following error...
" Logical volume /dev/vg00/lvol5 is currently mounted on /opt and could not be unmounted. The LV cannot be extended until the file system is able to be unmounted. Note that the fuser(1M) command can be used outside of SAM to help determine what processes and users are currently accessing this file system. "
Any suggestions ?
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2004 04:26 AM
09-30-2004 04:26 AM
SolutionShould be:
lvextend -L
fsadm -b
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2004 04:27 AM
09-30-2004 04:27 AM
Re: Online JFS
# swlist -l fileset -a state OnlineJFS
Also check for the vxadv drive int he kernel
# strings /stand/vmunix | grep vxadv
Now try to extend the LV
# lvextend -L
# fsadm -F vxfs -b
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2004 05:08 AM
09-30-2004 05:08 AM
Re: Online JFS
I was trying in SAM and i couldnt succeed.
When i tried now with
lvextend -L 1600 /dev/vg00/lvol5
it's working. But
# fsadm -F vxfs -b 1600m /opt command gives error
fsadm: the -b option requires "HP OnLineJFS (Advanced Vxfs)"
gives error
any suggestions for this?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2004 05:11 AM
09-30-2004 05:11 AM
Re: Online JFS
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2004 05:15 AM
09-30-2004 05:15 AM
Re: Online JFS
(for fsadm -b to work)
1. swlist -a state -l fileset OnlineJFS
2. /sbin/fs/vxfs/vxenablef -a
3. Is vxadv driver in kernel
kmsystem|grep vxadv
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2004 06:39 AM
09-30-2004 06:39 AM
Re: Online JFS
B3929BA B.11.00 HP OnLineJFS (Advanced VxFS)
# swlist -l fileset -a state B3929BA
# B3929BA
# B3929BA.AdvJournalFS
B3929BA.AdvJournalFS.AJFS-ENG-A-MAN configured
B3929BA.AdvJournalFS.AJFS-JPN-E-MAN configured
B3929BA.AdvJournalFS.AJFS-JPN-S-MAN configured
B3929BA.AdvJournalFS.VXFS-ADV-KRN configured
B3929BA.AdvJournalFS.VXFS-ADV-RUN configured
If you gave above installed and configured. You should be successful to do fsadm -b also.
Just do
# fsadm -b
fsadm: argument missing for the option b
If this is like above then you are only missing correct parameters in your command.
Just check above first.
Thanks
Prashant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2004 06:55 AM
09-30-2004 06:55 AM
Re: Online JFS
vxlicense -p
That just checks your license...
Should look like:
vrts:vxlicense: INFO: Feature name: HP_OnlineJFS [50]
vrts:vxlicense: INFO: Number of licenses: 1 (non-floating)
vrts:vxlicense: INFO: Expiration date: Sun Jun 24 02:00:00 2007 (996.5 days from now)
vrts:vxlicense: INFO: Release Level: 22
vrts:vxlicense: INFO: Machine Class: All
vrts:vxlicense: INFO: Site ID: 0
If not, you may have to re-install OnlineJFS...
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2004 07:34 AM
09-30-2004 07:34 AM
Re: Online JFS
Just as curiosity, you would like to check the space availeble in your VG where your are trying to extend the FS. I believe you are in root VG.
You can use following if you are going to do it in single user mode when /opt is not mounted.
extendfs -F vxfs -s size /dev/vg00/lvol5
-s size Specifies the number of DEV_BSIZE blocks to be added to the file system. If size is not specified, the maximum possible size is used.
you may shutdown all applications.
fuser -ku /dev/vg00/lvol5
then u
umount /dev/vg00/lvol5
extendfs as mentioned above.
mount
start all applications...
Hope this helps
Prashant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2004 04:17 PM
09-30-2004 04:17 PM
Re: Online JFS
Try #swlist -l fileset -a state OnlineJFS
check the status of the OnlineJFS,
use swconfig command to reconfigure it.
regards
SK