Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Linux

Code Block
languagebash
mkdir AGENT_TEMP=/u01/software/agent     (you may change this to any directory, cd /u01/software/agentbut do not use AGENT_HOME)
mkdir ${AGENT_TEMP}
cd ${AGENT_TEMP}
unzip <download location path>/HttpsAgentTomcatComplete.zip

Windows

Code Block
languagebash
mkdirset AGENT_TEMP=c:\u01\software\downloaded
cd c:\u01\software\downloadedagent
mkdir %AGENT_TEMP%     (you may change this to any directory, but do not use AGENT_HOME)
cd %AGENT_TEMP%
unzip <download location path>\HttpsAgentTomcatComplete.zip

...

Code Block
cd $AGENT_HOME

cp -r /u01/software/agent/${AGENT_TEMP}/apache-tomcat-flexdeploy-https-agent .

...

Code Block
cd %AGENT_HOME%

mkdir apache-tomcat-flexdeploy-https-agent
xcopy c:\u01\software\downloaded\%AGENT_TEMP%\apache-tomcat-flexdeploy-https-agent apache-tomcat-flexdeploy-https-agent /s

...

Code Block
cd %AGENT_HOME%

copy apache-tomcat-flexdeploy-https-agent-old/conf/server.xml apache-tomcat-flexdeploy-https-agent/conf/server.xml
copy apache-tomcat-flexdeploy-https-agent-old/conf/tomcat-users.xml apache-tomcat-flexdeploy-https-agent/conf/tomcat-users.xml
Info

You can remove the apache-tomcat-flexdeploy-agent-old directory after testing the connection in step 7.

Step 6. Start Agent

Linux

Code Block
cd $AGENT_HOME

./StartFlexDeployHttpsAgent.sh

...