- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to Create Disk on VA7100
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-27-2002 12:22 PM
09-27-2002 12:22 PM
We have a VA7100 and I have created 4 LUNs. I would like to know how to proceed from there, i.e. how to pv, lv create, etc.
It seems confusing without manual for guidance. Don't know why HP does not ship it along with the VA.
The VA config is 0/4/0/0 is primary, while 0/7/0/0 is alternate. 0/7/0 goes to disk of c6txdx, while 0/4/0 goes to c4txdx.
The followings are what I have and really would like guru give comments on it:
-----------------------------Sequences:
a. Create LUN (lun 0 =10m, first lun is for system communication only, never use it)
b. Ioscan ???fn
c. Insf ???eH /0/4/0/0, insf ???eH 0/7/0/0 (if ioscan do not see disks created)
d. Ioscan ???fn (again) 0/4/0 primary c4txdx, 0/7/0 alternate c6txdx
e. Mkdir vgxx
f. Mknod vg group
g. Pvcreate /dev/rdsk/c4txdx
h. Vgcreate vgxx /dev/dsk/c4/txdx, ??? (more volumn groups smaller than 10G
i. Vgchange ???a y vgxx
j. Vgextend /vgxx /dev/dsk/c6txdx,??? (c6 always extends)
k. Vgdisplay ???v vgxx (should show both c4 and c6)
l.
-----------------------
My major confusion lies with:
1) pvcreate only on c4txdx, not on c6txdx?
2) vgextend only on c6txdx, not on c4txdx?
Help will be very appreciated.
Steven
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2002 12:40 PM
09-27-2002 12:40 PM
SolutionThe vgextend on the "alternate" path to the LUN adds the failover path to LVM. The primary was added via the vgcreate on the primary path to the LUN.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2002 12:45 PM
09-27-2002 12:45 PM
Re: How to Create Disk on VA7100
vgcreate /dev/vgxx /dev/dsk/c6txdx /dev/dsk/c4txdx
this will automatically create the volume group with c6txdx as primary path and c4txdx as alternate...
after the initial pvcreate on one of the paths
Ted
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2002 12:47 PM
09-27-2002 12:47 PM
Re: How to Create Disk on VA7100
# mkdir /dev/vg01
# mknod /dev/vg01/group c 64 0x020000
==> Minor number 0x020000 must be unique.
# pvcreate /dev/rdsk/c4t0d2
==> Only do this on the primary device.
# vgcreate /dev/vg01 /dev/dsk/c4t0d2 /dev/dsk/c6t1d2
==> You don't need step (i), when a VG is created it's automatically activated. The vgcreate command will know c4t0d2 is primary and c6t1d2 is the alternate path. There is no need to run pvcreate on the alternate device/path. This way you do not need an extra step (ie the vgextend).
# vgdisplay -v /dev/vg01
==> You should see right at the bottom "Alternate Path" tagged to c6t1d2.
# lvcreate -L 4000 -n lvol1 /dev/vg01
==> Creating a 4GB LV.
# newfs -F vxfs /dev/vg01/rlvol1
==> Format it as vxfs filesystem
# vi /etc/fstab
==> Edit "fstab" file to make the mount point permanent.
If you want you can simply switch the primary and alternate device.. (just to show you..)
# vgreduce /dev/vg01 /dev/dsk/c4t0d2
==> Take c4t0d2 out from vg01. Now c6t1d2 automatically becomes the primary link.
# vgextend /dev/vg01 /dev/dsk/c4t0d2
==> Extend vg01 by putting c4t0d2 back to it, hence it's now the alternate link.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2002 06:15 AM
09-30-2002 06:15 AM
Re: How to Create Disk on VA7100
For the final touch-up, I would like to know what to put into the /etc/fstab.
I have non-VA entry like:
----------------------------
/dev/vg02/lvol1 /disk2 vxfs rw,suid,nolargefiles,delaylog,datainlog 0 2
/dev/vg03/lvol1 /disk3 vxfs rw,suid,nolargefiles,delaylog,datainlog 0 2
------------------------------
With VA, what would be the proper entry? For the "nolargefiles" generated by sam before should have problem when I have the lvol1 size = 15G.
Steven
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2002 07:40 AM
09-30-2002 07:40 AM
Re: How to Create Disk on VA7100
# newfs -F vxfs -o largefiles /dev/vg01/rlvol1
then you need to put "largefiles" in place of the "nolargefiles" in the "fstab" file. Also take a look at all other options available for mounting a vxfs FS.
# man mount_vxfs