Reputation: 53
I want to migrate the existing IBM Websphere application server to equivalent Tomcat application server?
Second, how to configure this migrated Tomcat application server with IBM HTTP Server (ihs)?
To brief the current system, We are running simple web application with Servlets/JSP's for file uploading/downloading
Please let me know for any clarifications.
Upvotes: 3
Views: 8530
Reputation: 3174
The idea is to migrate with keeping the same level of J2EE, or it could break some things (deprecated methods, new behaviours,..)
There is no IHS for Tomcat, you will edit some files. These files should be considered :
Depending on your application, the context can be configured in different ways.
For the beginning, just follow the items from the first list and see if it starts. If it doesn't start, check the logs and probably work around the setenv file to adjust memory.
Upvotes: 3