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
# 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 --no-check-certificate

As an alternative to wget you can use curl to download the agent software from the Flexagon website.

Code Block
/HttpsAgentTomcatComplete-6.5.0.16.zip
# OR
curl -L --max-redirs 5 https://flexagon.com/downloads/httpsagent/HttpsAgentTomcatComplete-6.5.0.16.zip --output HttpsAgentTomcatComplete.zip

Panel
panelIconIdatlassian-info
panelIcon:info:
bgColor#B3D4FF

If the endpoint does not have internet access you can download the agent from the Flexagon website and transfer the zip file manually.

Extract the zip file in the desired location (referred to as "HTTPS_AGENT_HOME" in this document).

...