...
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/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 |
...