- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Creating filesystems on SAN
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
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
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-16-2006 03:34 AM
тАО06-16-2006 03:34 AM
I know I have to do a pvcreate, vgcreate for these SAN disks but don't know exactly the process. Any ideas?
I have 11 partitions that I need to make at different mount oints. I have included to here....
/aqua/v1/CREDIT_SCORE 16.0gb
/aqua/tpwk 18.0GB
-TIA
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-16-2006 04:16 AM
тАО06-16-2006 04:16 AM
Re: Creating filesystems on SAN
# ioscan -funC disk
~thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-16-2006 04:19 AM
тАО06-16-2006 04:19 AM
Re: Creating filesystems on SAN
run SAM -> disk devices
and create a new volume group with the presented devices, create LVOLs of needed size and mount points. SAM will guide you.
Are you the admin of this server?
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-16-2006 04:24 AM
тАО06-16-2006 04:24 AM
Re: Creating filesystems on SAN
if so, after validating you can see the new disks: ioscan -funC disk or you can run insf -e to create the special file then an ioscan -f to pick up the paths...
after that it will be like so
pvcreate /dev/rdsk/c?t?d?
mkdir /dev/vg????
mknod /dev/vg????/group c 64 0x0?????
vgcreate /dev/vg??? /dev/dsk/c?t?d? /dev/dsk/c?t?d? (alternate link)
vgextend /dev/vg?? /dev/dsk/c?t?d? /dev/dsk/c?t?d?
lvcreate -L 18000 /dev/vg??
lvcreate -L 16000 /dev/vg??
mkdir /aqua/v1/CREDIT_SCORE
mkdir /aqua/tpwk
newfs -F vxfs -o largefiles /dev/vg??/lvol1
newfs -F vxfs -o largefiles /dev/vg??/lvol2
mount -F vxfs /dev/vg??/lvol1 /aqua/v1/CREDIT_SCORE
mount -F vxfs /dev/vg??/lvol2 /aqua/tpwk
add the entries to your /etc/fstaba and you should be set.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-16-2006 04:30 AM
тАО06-16-2006 04:30 AM
SolutionThe simplest way in your case is to use SAM. Ensure that LUNs are visible, start SAM and go to disks. You will have to create volume group, to build logical volume and to create file system (there is an option for that).
If you want to do all this manually, so:
For each /dev/dsk/cXtYdZ do:
pvcreate /dev/rdsk/cXtYdZ
mkdir /dev/vgNN
mknod /dev/vgNN/group c 64 0x0L0000
(0L is a unique hex number for each VG)
vgcreate /dev/vgNN /dev/dsk/cXtYdZ
vgchange -a y vgNN
vgdisplay vgNN
Look for "Free PE PPPP"
lvcreate -l PPPP vgNN
newfs -F vxfs /dev/vgNN/rlvol1
mkdir /FS_NAME1
mount /dev/vgNN/lvol1 /FS_NAME1
etc....
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-31-2008 08:20 AM
тАО01-31-2008 08:20 AM