Cyrille Giquello wrote:
java org.xmlBlaster.Main -port -1 -cluster.node.id myServer -cb.minimumPoolSize 2hello,
I think I've already ask about that but ...
I try to run xmlBlaster with only xml-rpc protocol.
commande line option :
-port 0 -xmlrpc.hostname 213.186.34.118 -xmlrpc.port 40001 -ior.port 0 -socket.port 0 -socket.backlog 2
but xmlBlaster still listening on port 33614. how to stop that port ? I think it is that stuff making many threads (about 20 !!)
I don't need many clients to connect, only 1 or 2.
cyrille
-port switches http port off, and set a nice name for the xmlBlaster node.
Most threads are from the CbWorkerPool thread pool. This preallocates default 10 threads, reduce it with e.g.:
-cb.minimumPoolSize 2
Further switch off all not used protocols.
regards,
Marcel