Versions Compared

Key

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

...

Step 4. Take a backup of the entire apache-tomcat-flexdeploy folder. It will be required since the old configuration files will need to be referenced. See example below for Linux.

Code Block
# Assuming FLEXDEPLOY_HOME environment variable is set, it should be parent folder of apache-tomcat-flexdeploy
cd $FLEXDEPLOY_HOME
mv apache-tomcat-flexdeploy/ apache-tomcat-flexdeploy-53/

Step 5. Delete the Copy apache-tomcat-flexdeploy folder and copy over the new one from the distribution zip.

Code Block
cd $FLEXDEPLOY_HOME
mkdir apache-tomcat-flexdeploy
cd <Unzipped Folder>/apache-tomcat-flexdeploy
cp -R * $FLEXDEPLOY_HOME/apache-tomcat-flexdeploy/
cd $FLEXDEPLOY_HOME/apache-tomcat-flexdeploy/
chmod +x ./bin/*.sh

Step 6. Copy the context.xml file from the backup folder (step 4) into <FlexDeploy Home>/apache-tomcat-flexdeploy/conf

...