ページの先頭行へ戻る
Interstage Application Server V12.2.0 Red Hat OpenShift上での利用手順書
FUJITSU Software

A.3.4 Red Hat OpenShiftのlivenessProbe用シェルスクリプト

Red Hat OpenShiftのlivenessProbeとして実行するシェルスクリプト(probe.sh)の記述例を以下に記載します。

#!/bin/sh
/bin/ps -ef | /bin/grep /opt/FJSVisas/etc/HA/PRIMECLUSTER/IS_INSPECT |  /bin/grep -v grep
if [ $? -eq 0 ] ; then
  exit 0
else
  exit 1
fi