Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Wildfly and Process controller

I see here and there the term of process controller in Jboss articles, but I can't find any description of it in the official documentation.

  • Search in the documentation : no trace
  • old documentation : some trace
  • question in Stack : seems important

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

like image 466
Nicolas Zozol Avatar asked Feb 14 '26 18:02

Nicolas Zozol


1 Answers

The process Controller is a tiny Java process which is in charge to mediate between the Domain controller and the Host controller. You don't have much control over it, as it is spawned when the Host controller is started, except that you can define the local port and address where it's listening to:

   --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
like image 105
Francesco Marchioni Avatar answered Feb 17 '26 11:02

Francesco Marchioni