...
- JAVA_HOME at the monitored hosts
- MZ_HOME of containers
- HA ports of pico instances
The HA script interface with the HA Monitor Server
The monitor
script interfaces the HA Monitor Server of a pico instance. By default, the scripts uses the following exit codes:
- 100 -
ha.jar
error returned non-zero value, indicating failed instance - 110 -
ha.jar
returned 0 (zero), indicating healthy instance
Extracting the HA Scripts
The scripts files are stored in file in MZ_HOME/ha
. Run the following command to extract the files:
Code Block | ||||
---|---|---|---|---|
| ||||
$ tar -xvf $MZ_HOME/ha/ha.tar |
Using the HA Scripts
This is the communication between the HA Monitor Server and the CMS in detail:
The CMS executes the
monitor
script.Code Block language text theme Eclipse $ ./monitor <$JAVA_HOME> <$MZ_HOME> <username> <mz.ha.port> [host] [sec_timeout] [debug]
The
username
argument is included for use in modified monitor scripts.By default, the
host
argument is omitted, this will cause the HA Client to connect to localhost.Use the optional argument
sec_timeout
to specify a timeout threshold, for the response from the HA Monitor Server. For additional debug information on stdout add the argumentdebug
.The
monitor
script calls the HA Client to pull the HA monitor server for information about the pico instance.Code Block language text theme Eclipse ... # Execute the ping command $java_home/bin/java -cp $mz_home/lib/ha.jar com.digitalroute.ha.HAClient $port $@ 2>&1 ...
The monitor script uses the status from
ha.jar
to return the appropriate exit code to the CMS.Code Block language text theme Eclipse ... # Collect the result result=$? # If the result differ from "0" then the command failed. if [ "$result" != "0" ] ; then echo "FAILED" exit 100 else echo "OK" exit 110 fi ...
The CMS acts upon this information. In case of failure (indicated by exit code), the
offline
scripts followed by theclean
script should be executed.Code Block language text theme Eclipse $ ./offline <$JAVA_HOME> <$MZ_HOME> mzadmin <pico> ... $ ./clean <$JAVA_HOME> <$MZ_HOME> mzadmin <pico> ...
The
offline
script is used to gracefully stop the pico instances. It must be executed when the Platform availability evaluation fails.The
clean
script is used to terminate the pico instances immediately and should always be used if theoffline
script fails. It will also attempt to remove any terminated SCs, from Akka clusters by calling the mzsh commandakka down
.The CMS executes the
online
script to start a new pico instance, e g in a different container.Code Block language text theme Eclipse $ ./online <$JAVA_HOME> <$MZ_HOME> mzadmin <pico> ...
Note | ||
---|---|---|
| ||
The provided scripts should be seen as templates that must be modified for different types of CMS products. Consider the following when adjusting the scripts:
|
The HA Monitor Server Interface
You can communicate with a HA Monitor Server via telnet. The following commands are supported:
Command | Description |
---|---|
help | Lists the available commands |
ping <pico_name> | Checks the pico client(s) for availability. |
quit | Closes the connection |
exit | Closes the connection |