Versions Compared

Key

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

...

  1. Stop the Platform by calling the offline script.

    Info
    titleExample


    Code Block
    languagetext
    themeEclipse
    $ ./offline <$JAVA_HOME> <$MZ_HOME> mzadmin platform 
     Shutting down platform...done.



  2. The Platform should be down, but to make sure it is completely down, call the clean script.

    Info
    titleExample


    Code Block
    languagetext
    themeEclipse
    $ ./clean <$JAVA_HOME> <$MZ_HOME> mzadmin platform



  3. Start the Platform in an alternative Platform Container.  The The database, including its listener, must be started before the Platform, since the Platform the Platform depends on it. The CMS must execute the database online script in an alternative container. 

    Info
    titleExample

    $ ./online <$JAVA_HOME> <$MZ_HOME> mzadmin platform
    Starting platform...done.



    Note
    titleNote!

    The database and its corresponding monitor/online/offline-functionality is not part of the HA solution.


  4. Due to the reconnection behavior of the EC/ECSAs, you do not need to restart these pico instances unless they are unavailable.  However, it is recommended that you check that the workflows are behaving as expected.

  5. Services, running in an SC (e.g. Kafka), must be restarted when the Platform has recovered. You can update the online script to do so by uncommenting the following line:

    Code Block
    #cmd=$cmd;mzsh service restart --publish-only


...