Skip to content

Commit 3e08fef

Browse files
committed
fix(tools): corda AIO supervisorctl configuration
While trying to use the supervisorctl binary to manage the starting of the corda-network process configured in supervisord.conf the following error was encountered and then fixed by this change: $ supervisorctl -c /etc/supervisor/supervisord.conf Error: .ini file does not include supervisorctl section For help, use /usr/bin/supervisorctl -h Signed-off-by: Peter Somogyvari <[email protected]>
1 parent de18a4f commit 3e08fef

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tools/docker/corda-all-in-one/supervisord.conf

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ logfile_maxbytes = 50MB
44
logfile_backups=10
55
loglevel = info
66

7+
[rpcinterface:supervisor]
8+
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
9+
10+
[supervisorctl]
11+
serverurl=http://127.0.0.1:9001
12+
713
[program:sshd]
814
command=/usr/sbin/sshd -D -ddd
915
autostart=true

0 commit comments

Comments
 (0)