Github user mmiklavc commented on the issue: https://github.com/apache/metron/pull/905 Just a heads up my first manual test failed with full dev because of this guy: https://github.com/apache/metron/blob/master/metron-deployment/roles/monit-start/tasks/main.yml#L36 ``` - name: Find the services installed on the host shell: monit summary | tail -n +3 | awk -F"'" '{print $2}' register: installed_services # which services that need started are actually installed on this host? - set_fact: installed_services_to_start: "{{ services_to_start | intersect(installed_services.stdout_lines) }}" ``` It grabs all the things in monit and attempts to start them. I removed the pcapservice monit script since we don't really need it for full dev. Full dev still spins up as normal and the pcapservice is no longer running. ``` [root@node1 ~]# ps aux|grep pcapservice root 2167 0.0 0.0 103312 888 pts/0 S+ 01:00 0:00 grep pcapservice [root@node1 ~]# monit summary The Monit daemon 5.14 uptime: 2h 31m Process 'snort' Running Process 'bro' Running System 'node1' Not monitored ``` This is all set, pending Travis getting fixed.
---