...
Code Block | ||
---|---|---|
| ||
HTTPS_AGENT_TEMP=/u01/software/temp/agent (you may change this to any directory, but don't use HTTPS_AGENT_HOME or anything inside HTTPS_AGENT_HOME) mkdir -p ${HTTPS_AGENT_TEMP} cd ${HTTPS_AGENT_TEMP} # DOWNLOAD either using wget or curl or transfer here manually # FlexDeploy 7.0 requires version 7.0 of the https agent. # The 8.0 version is not compatible with FlexDeploy 7.0. wget -O HttpsAgentTomcatComplete.zip# A newer version may be available, see https://support.flexagon.com/a/downloadssolutions/httpsagent/HttpsAgentTomcatComplete-7.0.0.5.zip # ORarticles/5000886515 for the latest download link. wget -O HttpsAgentTomcatComplete.zip <link from support site> # or curl -L --max-redirs 5 https://flexagon.com/downloads/httpsagent/HttpsAgentTomcatComplete-7.0.0.5.zip <link from support site> --output HttpsAgentTomcatComplete.zip unzip HttpsAgentTomcatComplete.zip |
...