Versions Compared
compared with
Key
- This line was added.
- This line was removed.
- Formatting was changed.
Tip |
---|
To get the Indeed Identity PAM installation files, make a request to the Indeed Identity support service - support@indeed-id.com |
Installation
- Download and unpack the Indeed PAM distribution on a Windows domain machine.
- Run PowerShell with administrator rights.
- Run the Indeed-PAM-Wizard.ps1 installation script.
- Select Indeed PAM Docker and click Next.
- 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.
- 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.
- 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.
- In the Confirmation window click Configure, wait for the finish of configuration and after the window appears, click OK
- Add certificates to the distribution folder \IPAM_Docker\certificates
- Copy IPAM_Docker folder from the distribution to Linux server.
- Connect to Linux server.
- Open IPAM_Docker folder.
Run bash-script using command below:
Code Block language bash sudo bash indeed-pam-linux.sh
- Select 1 option to install Indeed PAM
- Finish the script after installing.
Go to folder /etc/indeed-identity/indeed-pam folder
Code Block language bash cd /etc/indeed-identity/indeed-pam
Run containers with Indeed PAM management server components:
Code Block language bash 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):
Restarting all components:
Code Block language bash 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
Restarting a specific component:
Code Block language bash 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 language bash 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