Due to our internal support requirements, I am trying to get minemeld working on a RHEL7.9 machine. The installing of the application seems to be working, the services are running, but I can't get to the webUI at all. I am not even seeing the server responding to the requests. Any Assistance would be helpful.
Steps to complete the installation:
Installation of required packages
sudo yum install -y wget git gcc python-devel libffi-devel openssl-devel zlib-dev sqlite-devel bzip2-devel
Install and setup pip and ansible
wget https://bootstrap.pypa.io/get-pip.py
sudo -H python get-pip.py
sudo -H pip install ansible
Download the application code
sudo git clone https://github.com/PaloAltoNetworks/minemeld-ansible.git
cd minemeld-ansible
Run the local ansible services installation
sudo ansible-playbook -K -i 127.0.0.1, local.yml
Installation should complete without errors (if there is an error, ansible logs give you a good indication what went wrong)
PLAY RECAP ***************************************************************************************
127.0.0.1 : ok=83 changed=30 unreachable=0 failed=0 skipped=4 rescued=0 ignored=0
Add users to minemeld group
sudo usermod -a -G minemeld root
sudo usermod -a -G minemeld <your user> # add your user to minemeld group, useful for development
Check Service Status
sudo -u minemeld /opt/minemeld/engine/current/bin/supervisorctl -c /opt/minemeld/supervisor/config/supervisord.conf status
4 Services should run (if not, check the logs)
minemeld-engine RUNNING pid 26418, uptime 0:43:26
minemeld-supervisord-listener RUNNING pid 26417, uptime 0:43:26
minemeld-traced RUNNING pid 26419, uptime 0:43:26
minemeld-web RUNNING pid 26420, uptime 0:43:26
NOTE: Mimecast-web service FATAL issue:
sudo cp /usr/lib64/python2.7/lib-dynload/_sqlite3.so /usr/local/lib/python2.7/sqlite3/CE
... View more