Versions Compared

Key

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

...

Visit this page for details on testing connectivity from FlexDeploy to the Agent endpoint.

Running multiple agents on the same endpoint

This is sometimes necessary when upgrading your non production environment, and you need to test the connection to that endpoint while still keeping it available for your production server.

First copy your existing install to a new location. Next follow the upgrade instructions above.

Next modify the shutdown port

Code Block
languagexml
...
<Server port="CHANGE ME" shutdown="SHUTDOWN">
    <Listener className="org.apache.catalina.startup.VersionLoggerListener" />
...

And also the connector port

Code Block
<Connector port="CHANGE ME" protocol="org.apache.coyote.http11.Http11NioProtocol"
            maxThreads="150" secure="true"
            clientAuth="false" sslProtocol="TLSv1.2" SSLEnabled="true"
            keystoreFile="../config/tomcat.jks" keystorePass="*PASSWORD_HERE*">
        </Connector>

Make sure both of these ports are not being used by anything else.

Now when you test your connection update the ports (in FlexDeploy) to the new ports reflected here.