Skip to content

Commit

Permalink
fix(tools): corda AIO supervisorctl configuration
Browse files Browse the repository at this point in the history
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 <peter.somogyvari@accenture.com>
  • Loading branch information
petermetz committed Mar 25, 2021
1 parent 3d635c0 commit d7e6f66
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tools/docker/corda-all-in-one/supervisord.conf
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ logfile_maxbytes = 50MB
logfile_backups=10
loglevel = info

[rpcinterface:supervisor]
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface

[supervisorctl]
serverurl=http://127.0.0.1:9001

[program:sshd]
command=/usr/sbin/sshd -D -ddd
autostart=true
Expand Down

0 comments on commit d7e6f66

Please sign in to comment.