Project

General

Profile

Actions

Unattended Provisioning Troubleshooting » History » Revision 4

« Previous | Revision 4/7 (diff) | Next »
Christoph Witzany, 01/06/2013 08:42 AM


Unattended Provisioning Troubleshooting

Below are some topics and troubleshooting steps that you may encounter while using the unattended provisioning. Please add topics or provide answers if you can.

Host is stuck in PXEboot cycle after provisioning.

libvirt

PXELinux is broken for versions >= 4.02.
In your PXE default template replace "LOCALBOOT 0" with "LOCALBOOT -1"
If this does not help try "chain.c32 hd0,0" instead.

Host did not get the provision file

If your host can't get the provision file check your apache config. The foreman configuration should be in a file called foreman.conf. There you have the vHost configuration for HTTP and HTTPS access. If you have multiple interfaces in your foreman server, you must make sure that the right IP address under which the host tries to access the foreman server is configured here. You may also configure apache to listen on all interfaces by using the * wildcard. Your foreman.conf should look similar to

<VirtualHost *:80>
  ServerName foreman.my.domain
  ServerAlias foreman
  DocumentRoot /usr/share/foreman/public
  PassengerAppRoot /usr/share/foreman/
  RailsAutoDetect On
  AddDefaultCharset UTF-8
</VirtualHost>

<VirtualHost *:443>
  ServerName foreman.my.domain
  ServerAlias foreman

  RailsAutoDetect On
  DocumentRoot /usr/share/foreman/public
  PassengerAppRoot /usr/share/foreman/

  # Use puppet certificates for SSL

  SSLEngine On
  SSLCertificateFile      /var/lib/puppet/ssl/certs/mycert.pem
  SSLCertificateKeyFile   /var/lib/puppet/ssl/private_keys/mykey.pem
  SSLCertificateChainFile /var/lib/puppet/ssl/certs/ca.pem
  SSLCACertificateFile    /var/lib/puppet/ssl/certs/ca.pem
  SSLVerifyClient         optional
  SSLOptions              +StdEnvVars
  SSLVerifyDepth          3
</VirtualHost>

Some questions did not get answered by the provision file.

Provision file is using the wrong installation media server.

Updated by Christoph Witzany over 11 years ago · 4 revisions