Versions Compared

Key

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

...

To stop platform services:

  1. Abiquo Stop the API on the API Server or Monolithic Server

    Code Block
    servicesystemctl stop abiquo-tomcat


  2. Stop the UI on the API Server or Monolithic Server or dedicated UI Server

    Code Block
    systemctl stop
    service httpd stop


  3. Stop Remote Services server

    Code Block
    servicesystemctl stop abiquo-tomcat


  4. Stop the database on the Monolithic Server or Database server.

    Code Block
    systemctl stop mariadb
    

    For a datanode configuration, you will also need to stop

     

    the Galera cluster. For more details, see Stop and start HA configuration

  5. Stop RabbitMQ (on the Monolithic Server or API Server or Datanode)

    Code Block
    systemctl stop rabbitmq-server


  6. V2V Server The -
    You do not need to stop anything because the BPM remote service is run on-demand only, so there is no need to stop anything

    KVM hypervisor if used

    Code Block
    service abiquo-aim stop

    LVM storage server if used

    Code Blockservice abiquo-lvmiscsi stop

  7. Stop Monitoring server

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


  8. 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


All processes on platform servers should now be halted

...