<div dir="ltr"><div dir="ltr"><div class="gmail_default" style="font-family:garamond,serif;font-size:small;color:#000000">> Rebooting
 the system and trying again - this works and install goes through. Any 
suggestions on how to debug this further - and what are the possible 
points to check<p style="box-sizing:border-box;margin:0px 0px 1rem;line-height:1.5em;color:rgb(37,37,37);font-family:Overpass,"Open Sans",Helvetica,sans-serif;font-size:16px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial"></p><p style="box-sizing:border-box;margin:0px 0px 1rem;line-height:1.5em;color:rgb(37,37,37);font-family:Overpass,"Open Sans",Helvetica,sans-serif;font-size:16px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial">This makes me think that there is no issues with your kickstart file, there can be a problem for first instance disk detection and wipeout of RAID signatures which doesn't let you <br></p><p style="box-sizing:border-box;margin:0px 0px 1rem;line-height:1.5em;color:rgb(37,37,37);font-family:Overpass,"Open Sans",Helvetica,sans-serif;font-size:16px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial">deploy first time.  In such situations, it's always great to capture anaconda logs which you can get in /tmp of tty2 else, you can append the anaconda boot parameters as follows</p><p style="box-sizing:border-box;margin:0px 0px 1rem;line-height:1.5em;color:rgb(37,37,37);font-family:Overpass,"Open Sans",Helvetica,sans-serif;font-size:16px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial">linux inst.ks=<your kickstart file path> inst.sshd=1 sshpw=testpassword ip=192.168.0.100 netmask=255.255.255.0 gateway=192.168.0.1 nameserver=192.168.0.1</p><p style="box-sizing:border-box;margin:0px 0px 1rem;line-height:1.5em;color:rgb(37,37,37);font-family:Overpass,"Open Sans",Helvetica,sans-serif;font-size:16px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial">This enables your system's sshd during installation and when you get any problem, just ssh to this system using Windows Putty or from other Linux system with root and password as "testpassword" without quotes, you will get anaconda shell. On this shell, you can go to /tmp and here are our logs. These logs can be read, program.log will show you which command was executed last and what's it's return value. <br></p><p style="box-sizing:border-box;margin:0px 0px 1rem;line-height:1.5em;color:rgb(37,37,37);font-family:Overpass,"Open Sans",Helvetica,sans-serif;font-size:16px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial">The disk names can be found in /proc/partitions or using parted command. So you can troubleshoot from here.</p><p style="box-sizing:border-box;margin:0px 0px 1rem;line-height:1.5em;color:rgb(37,37,37);font-family:Overpass,"Open Sans",Helvetica,sans-serif;font-size:16px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial">Back to the problem, anaconda might not be able to wipeout the preinstalled raid signatures from your disks, so you might want to force clean it by adding a %pre script as follows.</p><p style="box-sizing:border-box;margin:0px 0px 1rem;line-height:1.5em;color:rgb(37,37,37);font-family:Overpass,"Open Sans",Helvetica,sans-serif;font-size:16px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial">%pre</p><p style="box-sizing:border-box;margin:0px 0px 1rem;line-height:1.5em;color:rgb(37,37,37);font-family:Overpass,"Open Sans",Helvetica,sans-serif;font-size:16px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial">wipefs -a -f /dev/sda</p><p style="box-sizing:border-box;margin:0px 0px 1rem;line-height:1.5em;color:rgb(37,37,37);font-family:Overpass,"Open Sans",Helvetica,sans-serif;font-size:16px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial">wipefs -a -f /dev/sdb</p><p style="box-sizing:border-box;margin:0px 0px 1rem;line-height:1.5em;color:rgb(37,37,37);font-family:Overpass,"Open Sans",Helvetica,sans-serif;font-size:16px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial">%end</p><p style="box-sizing:border-box;margin:0px 0px 1rem;line-height:1.5em;color:rgb(37,37,37);font-family:Overpass,"Open Sans",Helvetica,sans-serif;font-size:16px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial">Considering your disks names are /dev/sda and /dev/sdb. Please note that above two commands in %pre section will fully wipe out your filesystems on /dev/sda and /dev/sdb, if you are not sure about the disk naming which can get changed across reboots, you can consider replacing those names with /dev/disk/by-id values too, which will hard-code the kickstart, to make it dynamic, you will need to inject little scripting into it.<br></p><p style="box-sizing:border-box;margin:0px 0px 1rem;line-height:1.5em;color:rgb(37,37,37);font-family:Overpass,"Open Sans",Helvetica,sans-serif;font-size:16px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial">Additionally, how does your kickstart  partitioning stanza looks like? Does the clearpart statement have --all --drive=sda,sdb with it? <br></p></div></div><span class="gmail_default" style="font-family:garamond,serif;font-size:small;color:rgb(0,0,0)"></span><br><div><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Feb 6, 2019 at 9:35 AM Rashmi Jain <<a href="mailto:rashmjain@gmail.com">rashmjain@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div>Setup : appliance with 2 VDrives in RAID 10 and RAID 1</div><div>RHEL 7.5 based install with customized paritioning, text based install.</div><div>Most of the time  the  customized works fine  but sometimes it stops on  Generatign customized storage configuration. Installation Destination (No disks selected)<br></div><div>

<p style="box-sizing:border-box;margin:0px 0px 1rem;line-height:1.5em;color:rgb(37,37,37);font-family:Overpass,"Open Sans",Helvetica,sans-serif;font-size:16px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial">Rebooting the system and trying again - this works and install goes through. Any suggestions on how to debug this further - and what are the possible points to check</p><p style="box-sizing:border-box;margin:0px 0px 1rem;line-height:1.5em;color:rgb(37,37,37);font-family:Overpass,"Open Sans",Helvetica,sans-serif;font-size:16px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial">=============================================================================</p><p style="box-sizing:border-box;margin:0px 0px 1rem;line-height:1.5em;color:rgb(37,37,37);font-family:Overpass,"Open Sans",Helvetica,sans-serif;font-size:16px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial">Installation</p><p style="box-sizing:border-box;margin:0px 0px 1rem;line-height:1.5em;color:rgb(37,37,37);font-family:Overpass,"Open Sans",Helvetica,sans-serif;font-size:16px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:left;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial">1) [x] Language settings 2) [x] Time settings<br style="box-sizing:border-box">(English (United States)) (America/Los_Angeles timezone)<br style="box-sizing:border-box">3) [x] Installation source 4) [x] Software selection<br style="box-sizing:border-box">(Local media) (Custom software selected)<br style="box-sizing:border-box">5) [!] Installation Destination 6) [x] Kdump<br style="box-sizing:border-box">(No disks selected) (Kdump is disabled)<br style="box-sizing:border-box">7) [ ] Network configuration 8) [ ] User creation</p>

</div></div>
_______________________________________________<br>
Kickstart-list mailing list<br>
<a href="mailto:Kickstart-list@redhat.com" target="_blank">Kickstart-list@redhat.com</a><br>
<a href="https://www.redhat.com/mailman/listinfo/kickstart-list" rel="noreferrer" target="_blank">https://www.redhat.com/mailman/listinfo/kickstart-list</a></blockquote></div><br clear="all"><br>-- <br><div dir="ltr" class="gmail_signature"><div dir="ltr"><div style="font-family:garamond,serif;font-size:small;color:rgb(0,0,0)">Thanks,<br></div><div style="font-family:garamond,serif;font-size:small;color:rgb(0,0,0)">Pushpendra M Chavan<span class="gmail_default" style="font-family:garamond,serif;font-size:small;color:rgb(0,0,0)">.</span><br></div></div></div></div></div>