4.1. Set Up HTTPS for Ambari Server

If you want to limit access to the Ambari Server to HTTPS connections, you need to provide a certificate. While it is possible to use a self-signed certificate for initial trials, they are not suitable for production environments. After your certificate is in place, you must run a special setup command.

[Important]Important

Ambari Server should not be running when you do this. Either make these changes before you start Ambari the first time, or bring the server down before running the setup command.

  1. Log into the Ambari Server host.

  2. Locate your certificate. If you want to create a temporary self-signed certificate, use this as an example:

    openssl genrsa -out $wserver.key 2048 
    openssl req -new -key $wserver.key -out $wserver.csr  
    openssl x509 -req -days 365 -in $wserver.csr -signkey $wserver.key -out $wserver.crt

    Where $wserver is the Ambari Server hostname.

    [Important]Important

    The certificate you use must be PEM-encoded, not DER-encoded. If you attempt to use a DER-encoded certificate, you see this error:

    unable to load certificate
    140109766494024:error:0906D06C:PEM routines:PEM_read_bio:no start line:pem_lib.c 
    :698:Expecting: TRUSTED CERTIFICATE

    You can convert a DER-encoded certificate to a a PEM-encoded certificate using the following command:

    openssl x509 -in cert.crt -inform der -outform pem -out cert.pem

    where cert.crt is the DER-encoded certificate and cert.pem is the resulting PEM-encoded certificate.

  3. Run the special setup command and answer the prompts

    ambari-server setup-security
    1. Select 1 for Enable HTTPS for Ambari server.

    2. Respond y to Do you want to configure HTTPS?

    3. Select the port you want to use for SSL. Default is 8443.

    4. Provide the path to your certificate and your private key. For example, put your certificate and private key in /etc/ambari-server/certs with root as the owner or the non-root user you designated during Ambari Server setup for the ambari-server daemon.

    5. Provide the password for the private key.

    6. Start or restart the Server

      ambari-server restart