设置Volttron Central(VC)

时间:2016-07-22 23:11:36

标签: volttron

我对Volttron Central(VC)有一些疑问:

  1. 使用什么库/模块/网络服务器来提供网页内容(html, css,js等)?
  2. 什么是默认用户名/密码?我该怎么做 更改?我在文档中找不到这个信息。
  3. 感谢。

1 个答案:

答案 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