FortiSOAR Knowledge Base
FortiSOAR: Security Orchestration and Response software provides innovative case management, automation, and orchestration. It pulls together all of an organization's tools, helps unify operations, and reduce alert fatigue, context switching, and the mean time to respond to incidents.
nmathur
Staff
Staff
Article Id 277724
Description This article describes how to troubleshoot the issue of missing connector packages that occur after upgrading FortiSOAR on Docker platforms to version 7.4.2.
Scope FortiSOAR Dockers 7.4.2.
Solution

Post-upgrade of FortiSOAR on Docker platforms to version 7.4.2, it was noticed that connector packages were missing from:

 

 /opt/cyops/configs/integrations/packages/lib/python3.9/site-packages/

 

Run the following command as the ‘root’ user to install all the missing connection packages:


for requirements in $(find /opt/cyops/configs/integrations/connectors/ -name requirements.txt); do /opt/cyops-integrations/.env/bin/pip install -r $requirements; done

Contributors