Versions Compared

Key

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

...

To stop platform services:

  1. Stop the API on the API Server server or Monolithic Server monolithic server

    Code Block
    systemctl stop abiquo-tomcat


  2. Stop the UI on the API Server or Monolithic Serverserver or monolithic server or dedicated UI Serverserver

    Code Block
    systemctl stop httpd


  3. Stop Remote Services remote services server

    Code Block
    systemctl stop abiquo-tomcat


  4. V2V Server
    You do not need to stop anything because the BPM remote service is run on-demand only

  5. Stop Monitoring monitoring server

    Code Block
    systemctl stop abiquo-delorean
    systemctl stop abiquo-emmett
    systemctl stop kairosdb
    systemctl stop cassandra


  6. On the Monitoring monitoring server, check if Cassandra is really dead

    Code Block
    ps auwx | grep cassandra

    Get the process number for Cassandra (the first number in the output of the previous command), and kill it. In this example, Cassandra is process 12345.

    Code Block
    kill -9 12345


...