HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Addressing multiple EMC devices
Operating System - HP-UX
1834480
Members
3818
Online
110067
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- 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
07-30-2008 09:40 AM
07-30-2008 09:40 AM
Addressing multiple EMC devices
I currently have several hosts that have STD and BCV devices presented from and single EMC DMX3, which I manage the split and establish with perl scripts utilizing the symmir application. Our storage team recently presented additional devices (both STD and BCV) to extend and existing file system, but they were presented from a DMX2. This presents the issue that I now have two "sid" to perform my split and establish on.
Has anyone had to deal with this, and if so, how?
This is all running on Superdomes with HPUX11.11
Thanks in advance!
Neil
Has anyone had to deal with this, and if so, how?
This is all running on Superdomes with HPUX11.11
Thanks in advance!
Neil
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2008 09:56 AM
07-30-2008 09:56 AM
Re: Addressing multiple EMC devices
Have not been in an EMC environment for 3 years or so, so bear with my generalities as I do not have a symm to test my comments on.
With more then one symm you will have to supply the SID with every command (you know this). You should be able to use symdev or symbcv to id the device and its cooresponding SID.
Not much to go on and maybe just obvious to you.
Sorry,
T.
With more then one symm you will have to supply the SID with every command (you know this). You should be able to use symdev or symbcv to id the device and its cooresponding SID.
Not much to go on and maybe just obvious to you.
Sorry,
T.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2008 11:06 AM
07-30-2008 11:06 AM
Re: Addressing multiple EMC devices
I don't have an EMC-connected system to check this with, so the actual field names and positions will vary a little bit from the script I'm about to write:
syminq>/tmp/syminq.txt
for VG in `ls -1 /dev/*/group|awk -F/ '{ print $3 }'`
do
for PV in `vgdisplay -v $VG|grep "PV Name"|awk -F/ '{ print $NF ]'`
do
#If I remember correctly, the SymDev number is the last 4 digits of the 2nd field
SYMDEV=`grep $PV /tmp/syminq|awk '{ print $2 ]'|sed 's/^....//'`
echo "$VG\t$PV\t$SYMDEV"
done
done
rm /tmp/syminq.txt
syminq>/tmp/syminq.txt
for VG in `ls -1 /dev/*/group|awk -F/ '{ print $3 }'`
do
for PV in `vgdisplay -v $VG|grep "PV Name"|awk -F/ '{ print $NF ]'`
do
#If I remember correctly, the SymDev number is the last 4 digits of the 2nd field
SYMDEV=`grep $PV /tmp/syminq|awk '{ print $2 ]'|sed 's/^....//'`
echo "$VG\t$PV\t$SYMDEV"
done
done
rm /tmp/syminq.txt
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP