- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Should i've to unmount the filesystem if i extend ...
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-2006 02:36 AM
01-20-2006 02:36 AM
I'm going add space in a database filesystem.
which will be the best way?
1.Command line or SAM?
If SAM should i have to unmount the FS .
Thanks,
Siva
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2006 02:38 AM
01-20-2006 02:38 AM
Re: Should i've to unmount the filesystem if i extend it using sam
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2006 02:41 AM
01-20-2006 02:41 AM
Re: Should i've to unmount the filesystem if i extend it using sam
Whether or not you (at command line) or SAM need to unmount the filesystem is dependent upon whether or not you have Online JFS.
If you have Online JFS, then you can use SAM or the command line to expand your filesystem without an unmount.
To see if you have Online JFS:
# swlist -l product | grep -i OnlineJFS
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2006 02:42 AM
01-20-2006 02:42 AM
Re: Should i've to unmount the filesystem if i extend it using sam
If the user says that no downtime will be allowed i know i've to go for online JFS .
But Will not sam use Online jfs (fsadm) in the background if online jfs is available in the system.
Thanks,
siva
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2006 02:46 AM
01-20-2006 02:46 AM
Re: Should i've to unmount the filesystem if i extend it using sam
Swlist gives the following output
DISPLAY=158.98.223.121:0.0
root@ecom01:/[1]# swlist -l fileset | grep -i onlinejfs
# PHKL_24745 1.0 VxFS 31 OnlineJFS cumulative patch
It shows that only a patch is there?
Can i use Online jfs now.
Siva
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2006 02:46 AM
01-20-2006 02:46 AM
Re: Should i've to unmount the filesystem if i extend it using sam
Of course you may go with SAM but sometimes
SAM also may go wrong.I always go with from
command prompt(lvextend-extendfs...)
the Q is if you installed online-jfs
then you do not need to umount FS
the other Q is Do you want to take risk???
Last month,i also extend my FS 450Gb-->550Gb
and i have installed online-jfs BUT;
First i waited my offline_bck finished
(means application-DB) closed then
i made my maintenance(FS extending)
Murphy may in charge!!!!
:-))
good Luck,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2006 02:50 AM
01-20-2006 02:50 AM
Solution# /usr/sbin/vxlicense -p
Should show something like this:
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 (519.7 days from now)
vrts:vxlicense: INFO: Release Level: 22
vrts:vxlicense: INFO: Machine Class: All
vrts:vxlicense: INFO: Site ID: 0
If it does, then you can extend on the fly:
lvextend -l
fsadm -b
IE:
lvextend -L 512 /dev/vg00/lvol4
fsadm -F vxfs -b 512M /tmp
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2006 02:52 AM
01-20-2006 02:52 AM
Re: Should i've to unmount the filesystem if i extend it using sam
SAM is smart enough to know whether OnLine JFS is installed or not.
So, the answer is - yes - if OJFS is there, SAM will use it.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2006 02:52 AM
01-20-2006 02:52 AM
Re: Should i've to unmount the filesystem if i extend it using sam
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2006 02:54 AM
01-20-2006 02:54 AM
Re: Should i've to unmount the filesystem if i extend it using sam
# swlist -l product |grep -i online
OnlineJFS B.11.11 Online features of the VxFS File System
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2006 02:56 AM
01-20-2006 02:56 AM
Re: Should i've to unmount the filesystem if i extend it using sam
Thanks