Wildfly and Process Controller

I see the term process controller here and there in the Jboss articles, but I cannot find its description in the official documentation.

So the question is: what is it? Is this an old concept? If so, what is the replacement?

+3


source to share


1 answer


A process controller is a tiny Java process that is responsible for mediation between a domain controller and a host controller. You don't have much control over it as it is generated when the host controller starts, except that you can define the local port and address where it is listening:



   --interprocess-hc-address=<address> Address on which the host controller
                                       should listen for communication from
                                       the process controller


   --interprocess-hc-port=<port>       Port on which the host controller
                                       should listen for communication from
                                       the process controller

      

+3


source







All Articles