The AGENT_HOME variable referenced here is the base directory of the agent, which contains the apache-tomcat-flexdeploy-https-agent and config folders as well as some the start and stop scripts.
Step 1. Stop the Tomcat server
...
Download and unzip the latest version of the agent into a temporary location (for example, /u01/software), so it can be accessed during the upgrade process.
The agent software can be downloaded and transferred manually to the endpoint, or with internet access can be download directly to the endpoint using wget or curl.
Download using wget:
Code Block |
---|
wget -o HttpsAgentTomcatComplete.zip https://flexagon.com/downloads/httpsagent |
Or using curl:
Code Block |
---|
curl -L --max-redirs 5 https://flexagon.com/downloads/httpsagent --output HttpsAgentTomcatComplete.zip |
Note |
---|
Do not unzip the distribution directly into the AGENT_HOME directory so we can prevent existing configuration file(s) or folder(s) from being overwritten. |
The download link is available on the http://support.flexagon.com page. Do not unzip the distribution directly into the AGENT_HOME directory so we can prevent unwanted file(s) or folder(s) from being overwritten.
Linux
Code Block | ||
---|---|---|
| ||
mkdir /u01/software/agent cd /u01/software/agent unzip <download location path>/HttpsAgentTomcatComplete-6.5.x.x.zip |
...