2

我刚刚安装了离心机(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

4

1 回答 1

1

您似乎正在使用不正确的命令行参数启动 Centrifuge。尝试复制并粘贴到您的终端:

centrifuge --config=/var/www/configuration.json
于 2013-11-25T09:27:07.400 回答