Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
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
wget -O HttpsAgentTomcatComplete.zip# FlexDeploy 7.0 requires version 7.0 of the https agent.
# The 8.0 version is not compatible with FlexDeploy 7.0.
# A newer version may be available, see https://support.flexagon.com/a/solutions/downloads/httpsagentarticles/5000886515 for the latest download link.

wget -O HttpsAgentTomcatComplete.zip <link from support site>
# ORor
curl -L --max-redirs 5 https://flexagon.com/downloads/httpsagent <link from support site> --output HttpsAgentTomcatComplete.zip

unzip HttpsAgentTomcatComplete.zip

...