1

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

  1. 使用什么库/模块/webserver 来提供 Web 内容(html、css、js 等)?
  2. 什么是默认用户名/密码?我该如何改变它?我在文档中找不到此信息。

谢谢。

4

1 回答 1

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

于 2016-07-22T23:37:15.300 回答