...
Download and unzip the HTTPS Agent software using wget, curl, or manually from the Flexagon websiteSupport Portal.
Code Block |
---|
# select folder location where the agent will be downloaded export SOFTWARE_HOME=/u01/software mkdir -p $SOFTWARE_HOME cd $SOFTWARE_HOME wget -O HttpsAgentTomcatComplete.zip # The HTTPS agent version should match your FlexDeploy version. # Please see https://support.flexagon.com/a/downloads/httpsagent |
As an alternative to wget you can use curl to download the agent software from the Flexagon website.
Code Block |
---|
solutions/articles/5000887932 and find the corrent download link. wget -O HttpsAgentTomcatComplete.zip <link from support site> or curl -L --max-redirs 5 https://flexagon.com/downloads/httpsagent<link from support site> --output HttpsAgentTomcatComplete.zip |
Panel | ||||||
---|---|---|---|---|---|---|
| ||||||
If the endpoint does not have internet access you can download the agent from the Flexagon website Support Portal and transfer the zip file manually. |
Extract the zip file in the desired location (referred to as "HTTPS_AGENT_HOME" in this document).
Code Block |
---|
export HTTPS_AGENT_HOME=/u01/flexdeployhttpsagent
cd $HTTPS_AGENT_HOME
unzip /u01/software/HttpsAgentTomcatComplete.zip . |
...