<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Problem booting host with LUN partition in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-booting-host-with-lun-partition/m-p/4907608#M623008</link>
    <description>Unfortunately even after saying Y it doesn't give the IPL prompt. Gives the following error and goes back to main menu. &lt;BR /&gt;&lt;BR /&gt;=====================================&lt;BR /&gt;Main Menu: Enter command or menu &amp;gt; bo p6&lt;BR /&gt;Interact with IPL (Y, N, or Cancel)?&amp;gt; y&lt;BR /&gt;&lt;BR /&gt;Booting... &lt;BR /&gt;Failed to initialize with ENTRY_INIT Status = -7&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;     fffffff9 0 fcfc04bb 12d &lt;BR /&gt;     fc000091 65 fc000091 65 &lt;BR /&gt;     fc000091 65 fc000091 65 &lt;BR /&gt;     fc000091 65 fc000091 65 &lt;BR /&gt;     0 0 0 0 &lt;BR /&gt;     0 0 0 0 &lt;BR /&gt;     0 0 0 0 &lt;BR /&gt;     0 0 0 0 &lt;BR /&gt; .... FAILED.&lt;BR /&gt;&lt;BR /&gt;=======================================&lt;BR /&gt;&lt;BR /&gt;After that I tied assigning it LUN number 2, but with that it didn't boot either. &lt;BR /&gt;&lt;BR /&gt;Any more suggesttions. &lt;BR /&gt;&lt;BR /&gt;-Amit</description>
    <pubDate>Thu, 16 Jun 2005 04:46:39 GMT</pubDate>
    <dc:creator>Amit Agarwal_1</dc:creator>
    <dc:date>2005-06-16T04:46:39Z</dc:date>
    <item>
      <title>Problem booting host with LUN partition</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-booting-host-with-lun-partition/m-p/4907604#M623004</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;At the time installing OS on LUN partition, it was presented to host with LUN number 2. After installation it was unpresented and represented as LUN number 1. The system doesnot boot up and crashes in midway. SOme LVM related error is also displayed. &lt;BR /&gt;&lt;BR /&gt;We want LUN number to be 1, we cannot change that. what is the best way to recover from this, without reinstalltion?&lt;BR /&gt;&lt;BR /&gt;Thanks in anticipation,&lt;BR /&gt;Amit</description>
      <pubDate>Thu, 16 Jun 2005 02:27:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-booting-host-with-lun-partition/m-p/4907604#M623004</guid>
      <dc:creator>Amit Agarwal_1</dc:creator>
      <dc:date>2005-06-16T02:27:21Z</dc:date>
    </item>
    <item>
      <title>Re: Problem booting host with LUN partition</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-booting-host-with-lun-partition/m-p/4907605#M623005</link>
      <description>If I understand you correctly, you originally installed the server onto a disk /dev/dsk/cXtYd1, but now the same disk appears as /dev/dsk/cXtYd2 - is that right?&lt;BR /&gt;&lt;BR /&gt;There's no way in HPUX to rename the disk back to d1, something must have been changed on your disk array to cause this change. If you can't get it changed back to LUN1 by your storage guys then you will need to reconstruct the root volume group so it knows that d2 is the root disk, not d1.&lt;BR /&gt;&lt;BR /&gt;I'm assuming here that you are using LVM, and that there is 1 disk in your root volume group:&lt;BR /&gt;&lt;BR /&gt;1. Boot up the server, and interrrupt the boot process at the first available chance.&lt;BR /&gt;&lt;BR /&gt;2. Boot off your d2 disk - this will have the same hardware path as the old disk, except for ending in .2 instead of .1&lt;BR /&gt;&lt;BR /&gt;3.When asked the question â  Interact with ISL?â   answer Y.&lt;BR /&gt;&lt;BR /&gt;At the ISL prompt type:&lt;BR /&gt;&lt;BR /&gt;hpux -lm&lt;BR /&gt;&lt;BR /&gt;4. Remove the existing root volume group configuration:&lt;BR /&gt;&lt;BR /&gt;vgexport vg00&lt;BR /&gt;&lt;BR /&gt;5. Re-create the root volume group:&lt;BR /&gt;&lt;BR /&gt;mkdir /dev/vg00&lt;BR /&gt;mknod /dev/vg00/group c 64 0x000000&lt;BR /&gt;&lt;BR /&gt;vgimport /dev/vg00 /dev/dsk/cXtYd2&lt;BR /&gt;&lt;BR /&gt;obviously with the correct path to the disk.&lt;BR /&gt;&lt;BR /&gt;6. Activate the volume group and re-create links for boot:&lt;BR /&gt;&lt;BR /&gt;vgchange â  a y vg00&lt;BR /&gt;mount â  a&lt;BR /&gt;&lt;BR /&gt;lvlnboot â  b /dev/vg00/lvol1&lt;BR /&gt;lvlnboot â  r /dev/vg00/lvol3&lt;BR /&gt;lvlnboot â  d /dev/vg00/lvol2&lt;BR /&gt;lvlnboot â  s /dev/vg00/lvol2&lt;BR /&gt;lvlnboot â  R /dev/vg00&lt;BR /&gt;&lt;BR /&gt;This assumes that you have a default UX install where /stand is on lvol1, swap/dump are on lvol2, and / is on lvol3&lt;BR /&gt;Confirm the configuration is now correct by issuing&lt;BR /&gt;&lt;BR /&gt;lvlnboot â  v vg00&lt;BR /&gt;&lt;BR /&gt;7. Set the new boot path into stable storage:&lt;BR /&gt;&lt;BR /&gt;setboot â  p 0/X/0/0.x.x.0.0.0.2&lt;BR /&gt;&lt;BR /&gt;obviously with the correct boot hardware path.&lt;BR /&gt;&lt;BR /&gt;8. Reboot - hopefully everything w</description>
      <pubDate>Thu, 16 Jun 2005 02:45:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-booting-host-with-lun-partition/m-p/4907605#M623005</guid>
      <dc:creator>Duncan Edmonstone</dc:creator>
      <dc:date>2005-06-16T02:45:02Z</dc:date>
    </item>
    <item>
      <title>Re: Problem booting host with LUN partition</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-booting-host-with-lun-partition/m-p/4907606#M623006</link>
      <description>Yuck! Horrible pastes from MS word strike again - I should really get into the habit of pasting everything into notepad first. Lets try again with that procedure:&lt;BR /&gt;&lt;BR /&gt;1. Boot up the server, and interrrupt the boot process at the first available chance.&lt;BR /&gt;&lt;BR /&gt;2. Boot off your d2 disk - this will have the same hardware path as the old disk, except for ending in .2 instead of .1&lt;BR /&gt;&lt;BR /&gt;3.When asked the question 'Interact with ISL?' answer Y.&lt;BR /&gt;&lt;BR /&gt;At the ISL prompt type:&lt;BR /&gt;&lt;BR /&gt;hpux -lm&lt;BR /&gt;&lt;BR /&gt;4. Remove the existing root volume group configuration:&lt;BR /&gt;&lt;BR /&gt;vgexport vg00&lt;BR /&gt;&lt;BR /&gt;5. Re-create the root volume group:&lt;BR /&gt;&lt;BR /&gt;mkdir /dev/vg00&lt;BR /&gt;mknod /dev/vg00/group c 64 0x000000&lt;BR /&gt;&lt;BR /&gt;vgimport /dev/vg00 /dev/dsk/cXtYd2&lt;BR /&gt;&lt;BR /&gt;obviously with the correct path to the disk.&lt;BR /&gt;&lt;BR /&gt;6. Activate the volume group and re-create links for boot:&lt;BR /&gt;&lt;BR /&gt;vgchange -a y vg00&lt;BR /&gt;mount -a&lt;BR /&gt;&lt;BR /&gt;lvlnboot -b /dev/vg00/lvol1&lt;BR /&gt;lvlnboot -r /dev/vg00/lvol3&lt;BR /&gt;lvlnboot -d /dev/vg00/lvol2&lt;BR /&gt;lvlnboot -s /dev/vg00/lvol2&lt;BR /&gt;lvlnboot -R /dev/vg00&lt;BR /&gt;&lt;BR /&gt;This assumes that you have a default UX install where /stand is on lvol1, swap/dump are on lvol2, and / is on lvol3&lt;BR /&gt;Confirm the configuration is now correct by issuing&lt;BR /&gt;&lt;BR /&gt;lvlnboot -v vg00&lt;BR /&gt;&lt;BR /&gt;7. Set the new boot path into stable storage:&lt;BR /&gt;&lt;BR /&gt;setboot -p 0/X/0/0.x.x.0.0.0.2&lt;BR /&gt;&lt;BR /&gt;obviously with the correct boot hardware path.&lt;BR /&gt;&lt;BR /&gt;8. Reboot - hopefully everything will come back OK&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;&lt;BR /&gt;Duncan</description>
      <pubDate>Thu, 16 Jun 2005 02:47:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-booting-host-with-lun-partition/m-p/4907606#M623006</guid>
      <dc:creator>Duncan Edmonstone</dc:creator>
      <dc:date>2005-06-16T02:47:59Z</dc:date>
    </item>
    <item>
      <title>Re: Problem booting host with LUN partition</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-booting-host-with-lun-partition/m-p/4907607#M623007</link>
      <description>Hi Amit,&lt;BR /&gt;&lt;BR /&gt;By changing the LUN number from 2 to 1, the root disk's device file has most likely changed.&lt;BR /&gt;&lt;BR /&gt;What was the device file of this LUN earlier? It should be /dev/(r)dsk/c?t?d2.&lt;BR /&gt;&lt;BR /&gt;I have never got into this situation muself, but since the LUN no. cahnged from 2 to 1, the device file would change from c?t?d2 to c?t?d1.&lt;BR /&gt;&lt;BR /&gt;You can try booting from /dev/dsk/c?t?d1 now.&lt;BR /&gt;&lt;BR /&gt;You can break the booting (Press a key when system asks you to "Press a key within 10 seconds." and search for potential bootable devices. Interact with ISL, and give hpux -lm (for maintenance mode).&lt;BR /&gt;&lt;BR /&gt;Check the following link regarding "Moving a Disk Drive to a Different Address":&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/B2355-90675/ch04s08.html" target="_blank"&gt;http://docs.hp.com/en/B2355-90675/ch04s08.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Suraj</description>
      <pubDate>Thu, 16 Jun 2005 02:59:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-booting-host-with-lun-partition/m-p/4907607#M623007</guid>
      <dc:creator>Suraj Singh_1</dc:creator>
      <dc:date>2005-06-16T02:59:48Z</dc:date>
    </item>
    <item>
      <title>Re: Problem booting host with LUN partition</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-booting-host-with-lun-partition/m-p/4907608#M623008</link>
      <description>Unfortunately even after saying Y it doesn't give the IPL prompt. Gives the following error and goes back to main menu. &lt;BR /&gt;&lt;BR /&gt;=====================================&lt;BR /&gt;Main Menu: Enter command or menu &amp;gt; bo p6&lt;BR /&gt;Interact with IPL (Y, N, or Cancel)?&amp;gt; y&lt;BR /&gt;&lt;BR /&gt;Booting... &lt;BR /&gt;Failed to initialize with ENTRY_INIT Status = -7&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;     fffffff9 0 fcfc04bb 12d &lt;BR /&gt;     fc000091 65 fc000091 65 &lt;BR /&gt;     fc000091 65 fc000091 65 &lt;BR /&gt;     fc000091 65 fc000091 65 &lt;BR /&gt;     0 0 0 0 &lt;BR /&gt;     0 0 0 0 &lt;BR /&gt;     0 0 0 0 &lt;BR /&gt;     0 0 0 0 &lt;BR /&gt; .... FAILED.&lt;BR /&gt;&lt;BR /&gt;=======================================&lt;BR /&gt;&lt;BR /&gt;After that I tied assigning it LUN number 2, but with that it didn't boot either. &lt;BR /&gt;&lt;BR /&gt;Any more suggesttions. &lt;BR /&gt;&lt;BR /&gt;-Amit</description>
      <pubDate>Thu, 16 Jun 2005 04:46:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-booting-host-with-lun-partition/m-p/4907608#M623008</guid>
      <dc:creator>Amit Agarwal_1</dc:creator>
      <dc:date>2005-06-16T04:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: Problem booting host with LUN partition</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-booting-host-with-lun-partition/m-p/4907609#M623009</link>
      <description>OK, chances are that your getting the boot path wrong, as these errors indicate no boot LIF or device where you are pointing.&lt;BR /&gt;&lt;BR /&gt;I'm assuming the boot device is actually out a fibre channel card on a SAN yes? If its just on a local SCSI attached disk of some sort then running 'SEA IPL' from the boot prompt should find it.&lt;BR /&gt;&lt;BR /&gt;Otherwise you need to find the correct path for your boot disk. As normally you can't see SAN attached disks from BCH, they may not show up in the 'SEA IPL' search. If thats the case boot off your install CD and then choose to go to a recovery shell - once at the recovery shell run 'ioscan -funCdisk' to find all the disks that HPUX can see - for each of them run 'lifls /dev/dsk/cXtYdZ' until you find one with a boot lif area. Now make a note of the hardware path for the disk (not the device file as that will probably be different anyway). Now reboot again and use that boot path. &lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;&lt;BR /&gt;Duncan</description>
      <pubDate>Thu, 16 Jun 2005 05:07:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-booting-host-with-lun-partition/m-p/4907609#M623009</guid>
      <dc:creator>Duncan Edmonstone</dc:creator>
      <dc:date>2005-06-16T05:07:37Z</dc:date>
    </item>
    <item>
      <title>Re: Problem booting host with LUN partition</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-booting-host-with-lun-partition/m-p/4907610#M623010</link>
      <description>Hi Duncan,&lt;BR /&gt;&lt;BR /&gt;Yes you are right the server is connected to SAN through FC. Due to urgent need the server has been booted with different partition now. I won't be able to follwo the steps that you have provided for the time being. &lt;BR /&gt;&lt;BR /&gt;There was no important data stored on the failed partition. So even reinstallation is a choice with me. But if I get the time tomorrow, I will try to fix the things as told by you. I will get back to this forum with more update. &lt;BR /&gt;&lt;BR /&gt;Thanks a lot. &lt;BR /&gt;&lt;BR /&gt;Will assign the points later. &lt;BR /&gt;&lt;BR /&gt;-Amit</description>
      <pubDate>Thu, 16 Jun 2005 05:35:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-booting-host-with-lun-partition/m-p/4907610#M623010</guid>
      <dc:creator>Amit Agarwal_1</dc:creator>
      <dc:date>2005-06-16T05:35:34Z</dc:date>
    </item>
    <item>
      <title>Re: Problem booting host with LUN partition</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problem-booting-host-with-lun-partition/m-p/4907611#M623011</link>
      <description>The EVA and servers have been pulled out for different purpose, and they are no more available to me. Anyways, thanks to everyone who replied.</description>
      <pubDate>Tue, 21 Jun 2005 02:10:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problem-booting-host-with-lun-partition/m-p/4907611#M623011</guid>
      <dc:creator>Amit Agarwal_1</dc:creator>
      <dc:date>2005-06-21T02:10:32Z</dc:date>
    </item>
  </channel>
</rss>

