- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- VG creation on HPUX 11.31
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
06-25-2009 07:16 PM
06-25-2009 07:16 PM
VG creation on HPUX 11.31
i am new to 11.31 os.i am need for creating some new fileystms in 11.31.How to create ,any diff from 11.23 ?pls provide me the step by step procedure(already exisiting vg are showing /dev/disk/diskNN in /etc/lvmtab) ...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2009 08:50 PM
06-25-2009 08:50 PM
Re: VG creation on HPUX 11.31
If you already have vg then just using lvcreate command you can create new lv see the example
lvcreate -L sizeinMB -n myvolume vgname
here -L Size of logical volume in megabytes
-n is name of your lv.
#lvcreate -L 1024 -n lvol4 vg03
#newfs -F vxfs -o largefiles /dev/vg03/rlvol4
#mkdir /data
#mount /dev/vg03/lvol4 /data
add entry into /etc/fstab
# vi /etc/fstab
/dev/vg03/lvol4 /data vxfs defaults 0 2
same you can do using shm in 11.31
Suraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2009 08:57 PM
06-25-2009 08:57 PM
Re: VG creation on HPUX 11.31
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2009 08:57 PM
06-25-2009 08:57 PM
Re: VG creation on HPUX 11.31
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2009 10:06 PM
06-25-2009 10:06 PM
Re: VG creation on HPUX 11.31
A good white paper about 11.31 and lvm v2
http://docs.hp.com/en/lvm-v2/L2_whitepaper_8.pdf
In this case you use for example the option -V.
Hope it helps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2009 02:20 AM
06-26-2009 02:20 AM
Re: VG creation on HPUX 11.31
Regards,
Aaryan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2009 07:06 AM
06-26-2009 07:06 AM
Re: VG creation on HPUX 11.31
thanks for all replys ..
i ahve assineged few luns from storage and should i use insf or something else to create persistent device (/dev/dsk/diskNN)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2009 07:17 AM
06-26-2009 07:17 AM
Re: VG creation on HPUX 11.31
The commands you need to run are :
ioscan -funNCdisk
insf -eCdisk
ioscan -funNCdisk
Regards,
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2009 07:24 AM
06-26-2009 07:24 AM
Re: VG creation on HPUX 11.31
if i do insf ,whether it will create both /dev/rdsk/cxtxdx and /dev/rdisk/diskNN ????
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2009 07:31 AM
06-26-2009 07:31 AM
Re: VG creation on HPUX 11.31
/dev/dsk/*
/dev/rdsk/*
/dev/disk/*
/dev/rdisk/*
if the new luns have been presented to the system and the system can see them.
Regards,
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2009 01:43 PM
06-26-2009 01:43 PM
Re: VG creation on HPUX 11.31
with 11.31 and the new mass storage stack there should be no need to do insf commnands for new or modified luns
these should be picked up automatically and the persistant dev files created
check the luns with ioscan commands
#ioscan -m lun
and such like
see more details here
http://www.docs.hp.com/en/MassStorageStack/The_Next_Generation_Mass_Storage_Stack.pdf
and creation of vg's or lv's is basically the same, just a difference in the dev files but you can use either, legacy or persistent.
#ioscan -m dsf
#ioscan -funNC disk
for example
Andy
Andy
Andy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2009 06:38 PM
06-26-2009 06:38 PM
Re: VG creation on HPUX 11.31
Pls check below link for lvcreate as below ,
http://docs.hp.com/en/B9106-90008/lvcreate.1M.html
http://docs.hp.com/en/B9106-90008/newfs_vxfs.1M.html
Rgds//
taifur