Categories
Company
Local Language
Forums
Discussions
- Integrity Servers
- Server Clustering
- HPE NonStop Compute
- HPE Apollo Systems
- High Performance Computing
Knowledge Base
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Knowledge Base
Forums
Discussions
- Cloud Mentoring and Education
- Software - General
- HPE OneView
- HPE Ezmeral Software platform
- HPE OpsRamp Software
Knowledge Base
Discussions
Forums
Discussions
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
08-29-2004 09:33 PM
08-29-2004 09:33 PM
LUN
I've got two servers HP9000 L2000 (HP-UX 11.00, SrviceGuard cluster ) that is connected via a fibre switch to a VA7400.
I defined a new LUN on array, and added the LUN's to a volume group.
I can't see new LUN's after "armtopology" command.
If I import volume group to next server the message "The volume
group already exist" is appears on console and volume group is
not imported.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2004 10:55 PM
08-29-2004 10:55 PM
Re: LUN
before you import group to next server
you must run:
a) vgexport vg_name
b) mkdir /dev/vg_name
c) mknod
d) vgimport
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2004 10:56 PM
08-29-2004 10:56 PM
Re: LUN
I think you are facing 2 different problems
1) LUN not getting detected as a disk on HP &
2) vgimport giving error.
For (1) :
I will ask you
a) whether he server was restarted after creating the LUN ?
b) have you done insf -e to create the device files for the new LUN ?
c) what is the o/p of
ioscan -fnC disk
what is the status of the LUN at the expected path ?
d) Try using amdsp command from unix just to
see the LUNs status intead armtopology.
(see man amdsp for details )
For (2)
This problem can be either
1) the volume group name you are giving is already in use or
2) the minor number you are giving is
already in use.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2004 11:41 PM
08-29-2004 11:41 PM
Re: LUN
I've done changes ( i added new LUN to volume group) on one server.
I woud like to make the same changes on the second server.
Do I have to remove the volume group on second server befor import?
2.I restart both servers after creating LUN.
I do insf -e.
ioscan - status new LUN CLAIMED.
armdsp - status new LUN ACTIVE.
but armtopology don't display new LUN.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2004 12:07 AM
08-30-2004 12:07 AM
Re: LUN
Do I have to remove the volume group on second server befor import? - yes
steps are:
1. on node1
a) vgexport with preview mode
vgexport -p -s -m vgname.map vgname
b) copy map file to node2
c) rcp vgname.map node2:
d) deactive group
vgchange -a n vgname
vgchane -c n vgname
3. on node2
a) remove old vg
vgexport vgname
b) mkdir /dev/vgname
c) mknod /dev/vgname/group c 64 0xXX0000
d) vgimport -s -m vgname.map vgname
e) vgchange -a y vgname
f) vgcfgbackup vgname
e) vgchange -a n vgname
f) vgchange -c y vgname
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2004 12:59 AM
08-30-2004 12:59 AM
Re: LUN
Once you resolve that, then you can
ioscan -fnC disk
insf -e
vgexport /dev/vgXX
mkdir /dev/vgXX
mknod /dev/vgXX/group c 64 0xHH0000
vgimport -s -v -m /tmp/yourmapfile /dev/vgXX
Rgds...Geoff