You can choose to start and stop all the components together or individually. It is recommended to start and stop components together using the following command:
# cd <pi_install_dir>/pingidentity/webgui
# ./bin/start-all.sh

Starting elasticsearch.. [started]

Verifying elasticsearch connectivity.. [OK]
Verifying ABS connectivity.. [OK]

Starting dashboard.. [started]
Starting kibana.. [started]


Verifying Kibana connectivity.. [OK]
Verifying ASE connectivity.. [OK]

Starting webgui.. [started]

WebGUI started.
To stop all the components of PingIntelligence Dashboard together, enter the following command:
# cd <pi_install_dir>/pingidentity/webgui
# ./bin/stop-all.sh

Stopping webgui..[stopped]
Stopping dashboard.. [stopped]
Stopping  kibana.. [stopped]
Stopping  elasticsearch.. [stopped]

WebGUI stopped.

Start and stop PingIntelligence Dashboard components individually

Start the components in the following order:
  1. Start Elasticsearch: Enter the following command to start Elasticsearch:
    # cd <pi_install_dir>/pingidentity/elasticsearch
    # ./bin/elasticsearch -d -p logs/elasticsearch.pid
    If Elasticsearch is running as a service, use the following command:
    # sudo systemctl stop pi-elasticsearch.service
  2. Start Dashboard: Enter the following command to start Dashboard:
    # cd <pi_install_dir>/pingidentity/dashboard
    # ./bin/start.sh
    If Dashboard is running as a service, use the following command:
    # sudo systemctl start pi-dashboard.service
  3. Start Kibana: Enter the following command to start Kibana:
    # cd <pi_install_dir>/pingidentity/kibana
    # ./bin/kibana >> ./logs/kibana.log 2>&1 & echo $! > logs/kibana.pi
    If Kibana is running as a service, use the following command:
    # sudo systemctl start pi-kibana.service
  4. Start Web GUI: Enter the following command to start Web GUI:
    # cd <pi_install_dir>/pingidentity/webgui
    # ./bin/start.sh
    If Web GUI is running as a service, use the following command:
    # sudo systemctl start pi-webgui.service
Stop the components in the following order:
  1. Stop Web GUI: Enter the following command to stop Web GUI:
    # cd <pi_install_dir>/pingidentity/webgui
    # ./bin/stop.sh				
    If Web GUI is running as a service, use the following command:
    # sudo systemctl stop pi-webgui.service
  2. Stop Dashboard : Stop the dashboard engine by entering the following command:
    # cd <pi_install_dir>/pingidentity/dashboard
    # ./bin/stop.sh
    If Dashboard is running as a service, use the following command:
    # sudo systemctl stop pi-dashboard.service
  3. Stop Kibana: Stop Kibana by entering the following command:
    # cd <pi_install_dir>/pingidentity/kibana
    # kill -9 "$(<logs/kibana.pid)"				
    If Kibana is running as a service, use the following command:
    # sudo systemctl stop pi-kibana.service
  4. Stop Elasticsearch: Stop Elasticsearch by entering the following command:
    # cd <pi_install_dir>/pingidentity/elasticsearch
    # kill -15 "$(<logs/elasticsearch.pid)"					
    If Elasticsearch is running as a service, use the following command:
    # sudo systemctl stop pi-elasticsearch.service