Completing RepConnector Installation on WebLogic Server on UNIX

Modify and run the start-up script to complete RepConnector installation on WebLogic application server on UNIX.

  1. Stop the application server.
  2. Modify the startWebLogic.sh start-up script that resides in the domain’s bin directory to check for repra_env.sh and call it if it exists. Make this change after the setDomainEnv.sh call.
    # Call setDomainEnv here.
    DOMAIN_HOME="/path/to/WebLogic_Domain/mydomain"
    . ${DOMAIN_HOME}/bin/setDomainEnv.sh $*
    repraEnv=${WL_HOME}/../repra/bin/repra_env.sh
    if [ -f ${repraEnv} ]
    then
    . ${repraEnv}
    else
    echo "Cannot find: ${repraEnv}"
    exit 1
    fi
  3. Start the application server.
  4. Run the WLSStart.sh file under the RepConnector home directory.