facilitator-reg-daemon needs an option to control the address of the facilitator it talks to
The address is hardcoded and there is to way to change it from the command line.
FACILITATOR_ADDR = ("127.0.0.1", 9002)
The address is hardcoded and there is to way to change it from the command line.
FACILITATOR_ADDR = ("127.0.0.1", 9002)
Here's a complete list of what I had to do in order to run a second facilitator instance on the same host where one instance was already running. I only set up facilitator, facilitator.cgi, and facilitator-reg-daemon, not the email poller. I ran facilitator on port 10002 and facilitator-reg-daemon on 10003.
FACILITATOR_ADDR
to 10002 in facilitator-reg-daemon (this is what is noted in the ticket description).FACILITATOR_ADDR
to 10002 in facilitator.cgi.Popen
call in fac.py, and add the extra arguments -p 10003
.
Setting the port numbers of facilitator and facilitator-reg-daemon, I was able to do through those programs' -p
options.closed