Open woodonggyu opened 3 years ago
While looking for a problem, I found several suspicious problem.
The currently running environment is as follows.
According to the link below, ZeroMQ uses localhost:50000 by default. (ref. https://www.circl.lu/doc/misp/misp-zmq/)
so, Can't connect to ZeroMQ from zmq_subscriber.py.
How change ZeroMQ setting in MISP ? (like as access external)
parser = argparse.ArgumentParser(description='A zmq subscriber. It subscribes to a ZMQ then redispatch it to the misp-dashboard') parser.add_argument('-n', '--name', required=False, dest='zmqname', help='The ZMQ feed name', default="MISP Standard ZMQ") parser.add_argument('-u', '--url', required=False, dest='zmqurl', help='The URL to connect to', default="tcp://localhost:50000") args = parser.parse_args()
When running diagnostic.py, The result is as follows.
✔ Virtual environment and packages ✔ Configuration ✔ File permission ✔ Redis ⠼ checking zmq of misp - elapsed time: 5s
in. config.cfg
[RedisGlobal] host=192.168.22.128 port=6379 misp_web_url = https://192.168.22.128 misp_instances = [{ "name": "misp", "url": "https://192.168.22.128", "zmq": "tcp://localhost:50000"}]
Hey,
Did you manage to solve your issue?
If not, what is the full output of the diagnostic.py
?
Thanks!
Currently, I can access misp-dashboard. but when did something (ex. add event), misp-dashboard not showing any results.
The settings are as follows.
in. config.cfg
in. MISP ZeroMQ settings (+ installed pyzmq)
What more can you doubt? Thank you.