Versions Compared

Key

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

I am running multiple Tomcat instances for confluence, and sometimes face that confluence page loading takes too long - I can't have any chance to edit a page.


If it is, you should take a look following two items.


<confluence home>/conf/server.xml

You should use unique server port number. On below example, my port number is 28002.

Code Block
<Server port="28002" shutdown="SHUTDOWN" debug="0">
    <Service name="Tomcat-Standalone">
        <!--
         ==============================================================================================================
         DEFAULT - Direct connector with no proxy, for unproxied HTTP access to Confluence.

         If using a http/https proxy, comment out this connector.
         ==============================================================================================================
        -->
.
.
.


You also need to check your server instance port number

Code Block
<Service name="Tomcat-Standalone">
...
    <Connector port="28190" connectionTimeout="20000" redirectPort="8443"
        maxThreads="48" minSpareThreads="10"
        enableLookups="false" acceptCount="10" debug="0" URIEncoding="UTF-8"
        protocol="org.apache.coyote.http11.Http11NioProtocol"/>
...


<confluence home>/bin/setenv.sh

You should check if your collaborative editor port does not make any conflict with other application including confluence instances. If you run more than one confluence on your server, you should change the port number.

...