- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Chg scsi @ of the controler of vg00 with mirrored ...
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
03-05-2002 11:51 PM
03-05-2002 11:51 PM
Chg scsi @ of the controler of vg00 with mirrored disks
No other disks, ctrl or vg ! So all is in vg00, and is mirrored.
My problem is :
i want to change the address of the scsi controler, to 8/8, of course without any data lost.
I've read "avm" article (http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x27ab53921f1ad5118fef0090279cd0f9,00.html) but they're not mirroring in his configuration.
So, is it necessary to break mirroring (lvreduce, vgreduce, etc.), before vgexport, or not !?
i suggest :
1) lv reduce, vgreduce, etc # break mirror,
2) boot in maintenance mode (hpux -lm),
3) vgexport /dev/vg00, halt,
4) change ctrl slot/adress,
5) boot in maintenance mode (hpux -lm),
6) vgimport /dev/vg00 /dev/dsk/cxtydz,
7) lvlnboot -R
8) reboot normaly (?)
9) re-creat mirroring (vgextend, lvextend, etc.)
Thank's a lot for any response !!
Olivier.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2002 12:53 AM
03-06-2002 12:53 AM
Re: Chg scsi @ of the controler of vg00 with mirrored disks
Shutdown and change disks to new location.
boot, stop boot
search IPL
boot Hardware address or P[123]
interact with ipl ? YEs
hpux -lq -lm ## mode lvm maintenance.
After boot Vg00 is not active.
vgexport -s -m /VG00_MAP /dev/vg00
mkdir /dev/vg00
mknod /dev/vg00/group c 64 0x000000
vgimport -s -m /VG00_MAP
vgchange -a y /dev/vg00
lvlnboot -R
lvlnboot -v
reboot
It works for me.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2002 08:26 AM
03-06-2002 08:26 AM
Re: Chg scsi @ of the controler of vg00 with mirrored disks
c0t5d0 and c0t8d0
You can also do this, ie by changing the instance number but still keep the device path unchange (c0t5d0 and c0t8d0)
o Build yourself the "infile" from the extisting configuration.
# ioscan -kf|grep -e INTERFACE -e DEVICE|awk '{printf "%s %s %s\n",$3,$1,$2}' > infile
o The "infile" should look something like this :-
......
0/0/8/0 ext_bus 0
0/0/8/0.5 target 3
0/0/8/0.5.0 disk 1
0/0/8/0.8 target 4
0/0/8/0.8.0 disk 2
0/0/8/1 ext_bus 1
0/0/8/1.2 target 5
....
o Edit the infile by changing the "ext_bus" line. For example the above .. you want to move the 2 disks from ext_bus 0 to ext_bus 1, you would modify the infile as such ..
...
0/0/8/0 ext_bus 1
.....
0/0/8/1 ext_bus 0
...
o Test the file :-
# ioinit -f infile 2>&1|more
==> Look for errors with any of the changed lines. If no diagnostic message is displayed for that line then it is good. All other lines that do not change will say something like ..
ioinit: Input identical to kernel, line ignored
Input line 1: 0/0/2/0 ext_bus 0
o Rename /etc/ioconfig and /stand/ioconfig with extension say ".save"
o Shutdown the system. Make the connection switch from 8.12 to 8/8. Power on the system.It will come up to ioinitrc and give this message:-
/sbin/ioinitrc /etc/ioconfig missing. Restore it from backup or invoke /sbin/ioinit -c to recreate it from kernel. (in ioinitrc) #
o Run this :-
(in ioinitrc) # /sbin/ioinit -f /infile -r
(in ioinitrc) # ^d
o After the system reboots, everything will come up just fine.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2002 12:59 AM
03-07-2002 12:59 AM
Re: Chg scsi @ of the controler of vg00 with mirrored disks
I will try the manipulation next week and then assign points.
A last question : are you using mirroring in your configuration ?
Thank's. Olivier.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2002 01:09 AM
03-07-2002 01:09 AM
Re: Chg scsi @ of the controler of vg00 with mirrored disks
1) Make sure no clashes of instance number for the "ext_bus", they must be unique.
2) Very important .. remember to save a copy /etc/ioconfig and /stand/ioconfig just in case if this fails you can fall back.