InterviewSolution
| 1. |
How To Run Multiple Hybris Instance In One Machine? |
|
Answer» Basically hybrid runs on a tomcat instance. Hybris is shipped with a bundled tomcat. So the question here is actually, how to RUN multiple tomcat in one machine. We can run as many hybris we WANT, TILL our machine memory permits. To do so, we need to make each instance of tomcat to have it’s own ports to USE. Make below ports unique for each instance. We should add below properties in local PROPERTY file of each instance with unique values.. tomcat.http.port=7001 tomcat.ssl.port=7002 tomcat.ajp.port=7009 tomcat.jmx.port=7003 tomcat.jmx.server.port=7004 Basically hybrid runs on a tomcat instance. Hybris is shipped with a bundled tomcat. So the question here is actually, how to run multiple tomcat in one machine. We can run as many hybris we want, till our machine memory permits. To do so, we need to make each instance of tomcat to have it’s own ports to use. Make below ports unique for each instance. We should add below properties in local property file of each instance with unique values.. tomcat.http.port=7001 tomcat.ssl.port=7002 tomcat.ajp.port=7009 tomcat.jmx.port=7003 tomcat.jmx.server.port=7004 |
|