我试图在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连接并启动服务。
我猜测在upstart期间,ntopng
正在MySQL之前运行并且无法找到活动守护程序。我可以用任何方式确保ntopng
在MySQL之后启动吗?
答案 0 :(得分:0)
自问题问题以来,可能存在版本更改,但我已成功将以下行放在/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
。你提到的等号可能是一个空格,而后面的参数是用语音标记括起来的吗?