Deploying VIP AuthHub with two Oracle Database nodes
search cancel

Deploying VIP AuthHub with two Oracle Database nodes

book

Article ID: 387396

calendar_today

Updated On:

Products

Symantec Identity Security Platform - IDSP (formerly VIP Authentication Hub)

Issue/Introduction

When deploying VIP AuthHub in an OpenShift cluster, is it possible to specify two nodes of an Oracle database in the JDBC Url?

Environment

VIP Authentication Hub 3.2

Openshift

Resolution

Below is the sample command to deploy AuthHub with two nodes of Oracle DB:

helm upgrade "${RELEASENAME}" -n "${NAMESPACE}" "${HELM_REPO}/ssp" \
       --version "${SSP_VERSION}" \
       --set ssp.deployment.size="custom"  \
       --set hazelcast-enterprise.cluster.memberCount=1 \
       --set ssp.db.connection.type="oracle" \
       --set ssp.db.jdbcUrl='jdbc:oracle:thin:@(DESCRIPTION=(LOAD_BALANCE=OFF)(FAILOVER=ON)(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=<server name_1>)(PORT=<port number>))(ADDRESS=(PROTOCOL=TCP)
(HOST=<server name_2>)(PORT=<port number>)))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=<service name>)))' \
       --timeout=20m \
       -f values.yaml