Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Installation

  1. Download and unpack the Indeed PAM distribution on a Windows domain machine.
  2. Run PowerShell with administrator rights.
  3. Run the Indeed-PAM-Wizard.ps1 installation script. 
  4. Select Indeed PAM Docker and click Next.

    Image Added
  5. In the PAM Servers window, enter the FQDN name of the management server, and the IP addresses of the access servers (When using an IPv6 network, specify it in the comma-separated field) and click Next.
    Image Added
  6. In the Database window, specify the DBMS server address, DBMS type, enter the username and password of the service account to work with data storage (if the database names differ from the required ones, you must enter the names of these databases) and click Next.Image Added
  7. In the next window specify DNS domain name, DN of User's container, enter the username and password of the account to use with user directory, check if it is necessary to use the LDAP protocol when reading the directory(LDAP protocol uses by default) and click Next.
    Image Added
  8. In the Confirmation window click Configure, wait for the finish of configuration and after the window appears, click OK
    Image Added
  9. Add certificates to the distribution kit folder \IPAM_Docker\certificates
    Image Added
  10. Copy IPAM_Docker folder from the distribution to Linux server.
  11. Connect to Linux server.
  12. Open IPAM_Docker folder.
  13. Run bash-script using command below:

    Code Block
    languagebash
    sudo bash indeed-pam-linux.sh


  14. Enter 1 to install Management server components
    Image Added
  15. Finish the script after installing.
  16. Go to /etc/indeed-identity/indeed-pam folder 

    Code Block
    languagebash
    cd /etc/indeed-identity/indeed-pam


  17. Run containers with Indeed PAM management server components:

    Code Block
    languagebash
    sudo docker compose -f docker-compose.management-server.yml up -d
    or
    sudo docker-compose -f docker-compose.management-server.yml up -d


Restarting components

To restart the components of the Indeed PAM management server, use the following commands (the commands must be executed in the /etc/indeed/indeed-pam folder):

    1. Restarting all components:

      Code Block
      languagebash
      sudo docker compose -f docker-compose.management-server.yml down
      sudo docker compose -f docker-compose.management-server.yml up -d 
      or
      sudo docker-compose -f docker-compose.management-server.yml down
      sudo docker-compose -f docker-compose.management-server.yml up -d


    2.  Restarting a specific component:

      Code Block
      languagebash
      sudo docker compose -f docker-compose.management-server.yml up -d <Component name> --force-recreate
      or
      sudo docker-compose -f docker-compose.management-server.yml up -d <Component name> --force-recreate

      Example of restarting Indeed PAM Core component:

      Code Block
      languagebash
      sudo docker compose -f docker-compose.management-server.yml up -d core --force-recreate
      or
      sudo docker-compose -f docker-compose.management-server.yml up -d core --force-recreate