我刚刚安装了离心机(https://centrifuge.readthedocs.org/en/latest/)并创建了一个 configuration.json 文件并将其放在 /var/www/ 文件夹中。
当我尝试运行 centrifuge centrifugeconfig = /var/www/configuration.json
时,服务器启动。但是,当我转到http://localhost:8000
管理面板中的默认路径时,它一直说 DataStructure 用作 SQLite。
这是我的 configuration.json 文件
{
"password": "admin",
"cookie_secret": "secret",
"api_secret": "secret",
"structure": {
"storage": "centrifuge.structure.mongodb",
"settings": {
"host": "localhost",
"port": 27017,
"name": "centrifuge",
"pool_size": 10
}
},
state: null
}
我检查了一下,MongoDB 服务器正在端口上运行27017
。