我对Volttron Central(VC)有一些疑问:
感谢。
答案 0 :(得分:2)
VC使用基于gevent的Web服务器。我们为它添加了一些自定义功能来注册路由等。
管理界面的默认用户名/密码是admin / admin。很快,这将通过volttron-cfg接口提供。要更改用户名/密码,需要修改代理的配置文件。
要创建用于VC的密码,您可以执行
#Authentication for users is handled through a naive password algorithm
import hashlib
hashlib.sha512(password).hexdigest() where password is the plain text password.
此配置是用户名/密码/组的创建方式。但是,在此配置文件中不推荐使用除users节点之外的所有内容。 https://github.com/VOLTTRON/volttron/blob/develop/services/core/VolttronCentral/config