0

I've got this configuration

{
    
    "volttron-central-address": "https://MYURL:8443",

    "volttron-central-serverkey": "MY KEY",
    "volttron-central-reconnect-interval": 5,
    "instance-name": "MYNAME",
    "stats-publish-interval": 30,
}

Then ran

python3 scripts/install-agent.py -s services/core/VolttronCentralPlatform -c config/vcp.config --tag vcp
vctl start --tag vcp

And I get the errors:

enter image description here

I suspect my tcp in .voltrron/config is not correct

[volttron]
message-bus = zmq
instance-name = Volttron-Tests
user1256378
  • 712
  • 2
  • 12
  • 31

1 Answers1

1

Your config should include a vip-address in it.

[volttron]
vip-address = tcp://externalip:22916

Craig
  • 949
  • 1
  • 5
  • 13