- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- online JFS question.
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
08-16-2006 06:50 AM
08-16-2006 06:50 AM
online JFS question.
Thanks for the help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2006 06:56 AM
08-16-2006 06:56 AM
Re: online JFS question.
you can use if from the command like so....
lvextend -L ???? /dev/vg??/lvol??
fsadm -F vxfs -b ????? /
i'm curious did you do a mna on fsadm?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2006 07:01 AM
08-16-2006 07:01 AM
Re: online JFS question.
/sbin/fs/vxfs/vxenablef
and also check /etc/inittab for
vxen::bootwait:/sbin/fs/vxfs/vxenablef -a
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2006 07:04 AM
08-16-2006 07:04 AM
Re: online JFS question.
lvextend -L
fsadm -F vxfs -b$((1024 * totalsize)) /mountpoint
ex: To extend lvol4 from 100MB to 500MB
lvextend -L 500 /dev/vg01/lvol4
fsadm -F vxfs -b$((1024*500)) /mount
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2006 07:07 AM
08-16-2006 07:07 AM
Re: online JFS question.
ie, after lvextend, you will not have to use umount and extendfs, but use fsadm -b
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2006 01:16 PM
08-16-2006 01:16 PM
Re: online JFS question.
lvextend -L 2000 /dev/vgxx/lvxx
fsadm -b 2000m /mountpoint
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2006 01:27 PM
08-16-2006 01:27 PM
Re: online JFS question.
There really is no man page for OnlineJFS; it simply adds additional options and abilities to existing commands. For example, man mount_vxfs. You will see some of the mount options (e.g. snapof=, convosync=direct, mincache=direct) are only available with OnlineJFS. Also, fsadm is able to work online to extend filesystems "on the fly". Man fsadm_vxfs for those details.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2006 01:49 PM
08-16-2006 01:49 PM
Re: online JFS question.
Just extend lvol
lvextend -L
and extend the file system
fsadm -L
refer to man ; fsadm_vxfs
Reagrds
nanan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-17-2006 02:23 AM
08-17-2006 02:23 AM
Re: online JFS question.
Just follow this steps.
Checked and proved on live systems
#Pvcreate â f /dev/rdsk/c14t6d5
-use the above if you need to add additional disk.
#lvextend â L (Present Space + New Space) /dev/vg00/lvol4
-If OnlineJFS is avaible please carry the next step. (It is available on all HP Servers)
#fsadm â F vxfs â b (Present Space + New Space X 1024) /mount_point
Live Example
#Pvcreate â f /dev/rdsk/c14t6d5
#vgextend /dev/vgoraDEVdb /dev/dsk/c14t6d5
#lvextend -L 184288 /dev/vgoraDEVdb/lvdevdat3
Logical volume "/dev/vgoraDEVdb/lvdevdat3" has been successfully extended.
Volume Group configuration for /dev/vgoraDEVdb has been saved in /etc/lvmconf/vgoraDEVdb.conf
#fsadm -F vxfs -b 188710912 /oradata/DEV/devdata3
vxfs fsadm: /dev/vgoraDEVdb/rlvdevdat3 is currently 157253632 sectors - size will be increased
Srikanth
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2006 03:42 AM
11-16-2006 03:42 AM
Re: online JFS question.
in online jfs u can increase size of file system without umount it..ok thats a main diffrence.
first find out respective logical volume of filesystem bye ;bdf command
to extend lv you can use sam.
sam-->Disk & FileSystems-->Logical Volumes-->Action-->modify---> Extend Logical volume.
u have to mention full size of lv u want to extend eg:- if u want to ext /dev/vg01/lvol12
to be 500 mb,currently it is 100 mb then,,
u will mention size 500 mb in sam, do not mention 100 + 400=500 this is wrong.
bye