Appendix: Verify the Setup
Carry out the following basic steps to verify the setup:
-
Listing the Docker Containers
List all the containers with the
docker ps
command. -
Get Console Access:
To get console access for any of the Docker, fetch the Container ID of the Docker using the
docker ps
command output and use it in the following command:[.codeph]``#docker exec -it <docker-container-id> /bin/bash ``
-
PingIntelligence for APIs Products:
The Intelligence products are installed in the
/opt/pingidentity
directory within the Docker. -
Checking the service names:
To get the service names of the containers, run the following command:
[.codeph]``#docker service ls``
The service name is the second column in the output.
-
Checking the logs of service:
To check the log of any service, use the following command:
[.codeph]``#docker service logs <service name>``
[.b]**For example** [.codeph]``docker service logs pingidentity_ase``