Environment
Novell eDirectory 8.8 for Linux
Novell GroupWise 8 Support Pack 2 Hot Patch 2
Novell GroupWise 8 Support Pack 2 Hot Patch 2
Situation
In SLES 11 due to the tomcat versions, only one application
(either iManager or WebAccess) will work at a time . Accessing
iManager will stop Webaccess working as Tomcat6 goes dead and
accessing WebAccess will stop iManager working as novell-tomcat5
goes dead.
Resolution
Change the server port and connector
port in the server.xml file of the tomcat. we can either make the
changes in the tomcat6 or novell-tomcat5.
To make the changes to the connector port:
If making changes on rcnovell-tomcat5
<Server port="9005" shutdown="SHUTDOWN">
To make the changes to the connector port:
If making changes on rcnovell-tomcat5
- go to /var/opt/novell/tomcat5/conf/server.xml
- To make the changes to the server port :
<Server port="8005" shutdown="SHUTDOWN">
For example :
For example :
<Server port="9005" shutdown="SHUTDOWN">
- To make the changes to the Connector port :
<Connector port="8080" maxHttpHeaderSize="8192"
For example:
For example:
<Connector port="9080"
maxHttpHeaderSize="8192"
If suing secure port , the change the connector port 8443 also.
If suing secure port , the change the connector port 8443 also.
<Connector port="8443" maxHttpHeaderSize="8192"
For Example:
<Connector port="9443"
maxHttpHeaderSize="8192"
- Once the changes are made, restart novell-tomcat5 and tomcat6