cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Kb on running multiple instance of FNCI V7 in a single system

Kb on running multiple instance of FNCI V7 in a single system

If FNCI is already running as a service in your instance and you are installing another instance in a different drive you may get below error in catalina.out file.

“apache.catalina.core.StandardServer.await StandardServer.await: create[localhost:8005]: java.net.BindException: Address already in use: JVM_Bindat java.net.DualStackPlainSocketImpl.bind0(Native Method)at java.net.DualStackPlainSocketImpl.socketBind(Unknown Source)”

 

As FNCI was already running as a service before and the port has already been allocated. So we have to change the port in server.xml file as more privilege is given to service always.

                             

Do the following changes in ‘<Install Directory>/tomcat/conf/Server.xml’ folder.

 

1.Navigate to line no 22: Replace the <Server port="8082" shutdown="SHUTDOWN">  with  <Server port="8005" shutdown="SHUTDOWN">

  1. Navigate to line no 69: Replace the <Connector port="8888" protocol="HTTP/1.1 with <Connector port="9999" protocol="HTTP/1.1"
  2. Navigate to line no 96: Replace <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" /> with <Connector port="8084" protocol="AJP/1.3" redirectPort="8443" />

If issue still persists

  1. Navigate to line no 71: change redirectPort="8443" to redirectPort="443"

 

Then restart the tomcat and change the port as 9999 while hitting FNCI V7 URL .

Labels (2)
Was this article helpful? Yes No
No ratings
Version history
Last update:
‎Jun 04, 2020 12:52 AM
Updated by:
Contributors