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
# For FlexDeploy 6.5, please use the 6.5 version of the agent.
# A newer version may be available, see https://support.flexagon.com/a/solutions/articles/5000880644 for the latest download link.
wget -O HttpsAgentTomcatComplete.zip https://flexagon.com/downloads/httpsagent/HttpsAgentTomcatComplete-6.5.0.16.zip<link from support site>
# ORor
curl -L --max-redirs 5 https://flexagon.com/downloads/httpsagent/HttpsAgentTomcatComplete-6.5.0.16.zip <link from support site> --output HttpsAgentTomcatComplete.zip

unzip HttpsAgentTomcatComplete.zip

...