我正在尝试在MySQL上使用持久存储设置ntopng(在raspbian上)。我在ntopng.conf中添加了以下行

--dump-flows=mysql;localhost;ntopng;flows;root;root


启动后,我发现ntopng已退出,因为它无法与数据库连接

---snippet from /var/log/ntopng/ntopng.log------------

28/Dec/2016 09:50:03 [MySQLDB.cpp:573] Attempting to connect to MySQL for interface eth0...
28/Dec/2016 09:50:03 [MySQLDB.cpp:602] ERROR: Failed to connect to MySQL: Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)[localhost:root]
28/Dec/2016 09:50:03 [MySQLDB.cpp:79] ERROR: Unable to connect: Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)
28/Dec/2016 09:50:03 [main.cpp:279] ERROR: Unable to create database schema, quitting

----end of snippet--------------


但是启动后,如果我运行'sudo service ntopng restart',我发现ntopng与MySQL连接并启动服务。

我猜测在新贵期间,ntopng在MySQL之前运行,无法找到活动的守护程序。我可以确保ntopng在MySQL之后启动吗?

最佳答案

自问您的问题以来,可能有版本更改,但我成功将以下行放在/etc/ntopng/ntopng.conf中(并且我已将您的设置用于<server><database><table><user><password>

-F "mysql;localhost;ntopng;flows;root;root"


从文档中应为表格;

-F "mysql;<server>;<database>;<table>;<user>;<password>"


这显然与上面的内容稍有不同(尽管--dump-flows应该可以替换为-F)。您提到的等号可能是一个空格,而论点的后半部分包含在语音标记中?

09-27 19:18