Versions Compared

Key

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

...

Code Block
# select folder location where the agent will be downloaded
export SOFTWARE_HOME=/u01/software
mkdir -p $SOFTWARE_HOME
cd $SOFTWARE_HOME

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

...