...
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 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 |
---|
curl -L --max-redirs 5 https://flexagon.com/downloads/httpsagent --output HttpsAgentTomcatComplete.zip --no-check-certificate |
Panel | ||||||
---|---|---|---|---|---|---|
| ||||||
If the endpoint does not have internet access you can download the agent from the Flexagon website and transfer the zip file manually. |
...