After moving the ESP agent manager, the static VIPA from home system was mistakenly created as a dynamic VIPA on target system. This caused the IP address of the home system to become unavailable. This resulted in communication issues, as nothing could connect from the home system to other LPARs due to the home system IP being taken by the ESP agent manager on the target system.
There are at least 2 possibilities.
RESTOPTS update:
HOST_NAME=$(hostname -s)
echo "HOST_NAME=$HOST_NAME"
export DNS_NAME="0.0.0.0"
if [ "$HOST_NAME" = "hostname" ]; then
echo "H140"
DNS_NAME="name.xx.xx"
elif [ "$HOST_NAME" = "hostname" ]; then
echo "H100"
DNS_NAME="name.xx.xx"
else
echo "Unknown hostName $HOST_NAME"
fi
"DNS_NAME=$DNS_NAME"
RESTPROP update:
server.address=${DNS_NAME}