MISP / misp-dashboard

A live dashboard for a real-time overview of threat intelligence from MISP instances
GNU Affero General Public License v3.0
192 stars 66 forks source link

added net-tools to debian-based install command #113

Closed Kortho closed 5 years ago

Kortho commented 5 years ago

needed to run the netstat command

SteveClement commented 5 years ago

Which command was missing?

Kortho commented 5 years ago

netstat is used in the start_all.sh and is not always included in the OS (ubuntu 19.04 for instance) therefor an install of net-tools includes this command

Kortho commented 5 years ago

"netstat -an |grep LISTEN |grep 6250 |grep -v tcp6 ; check_redis_port=$? netstat -an |grep LISTEN |grep 8001 |grep -v tcp6 ; check_dashboard_port=$?"

These does not work without net-tools installed :)

SteveClement commented 5 years ago

Cool makes sense

mokaddem commented 5 years ago

Thanks a lot!