PingAccess uses a pool of threads to respond to HTTP/S requests made to the TCP ports in use. This applies to both administrative and runtime engine listening ports. Acceptor threads read user requests from the administrative or runtime port and pass the requests to worker threads for processing. For performance, only one acceptor thread need be used in most situations. On larger multiple CPU core machines, more acceptors can be used.

To modify, open the run.properties file located in the conf directory of your PingAccess deployment and specify the number of acceptors you want to use on the following lines:

  1. Open the run.properties file located in the conf directory of your PingAccess deployment.
  2. Specify the number of acceptors you want to use on the following lines:
    • admin.acceptors=<N>
    • engine.http.acceptors=<N>
    • agent.http.acceptors=<N>

    Where <N> represents the number of acceptor threads.