FortiSIEM
FortiSIEM provides Security Information and Event Management (SIEM) and User and Entity Behavior Analytics (UEBA)
yujames
Staff
Staff
Article Id 193753

Description

This article will explain how to update libzip library in centos when upgrades on FortiSIEM may have not updated libzip packages.
 


Scope
Version 5.4.0 and Below

Solution

1- ssh into the fortisiem node as root
2- # su admin
3- # phMonitor
- This command is used to check if libzip.so.1 is missing
4- # phCheckpoint
- This command is also used to check if libzip.so.1 is missing for the 32bit library
5- If the libraries are missing for both checks:
- # sudo yum install libzip -y 
- This is for the 64bit library
- # sudo yum install libzip.i686 -y
- This is for the 32bit library module
6- Ensure that all services come back up:
- # killall -9 phMonitor
or
- # reboot
Contributors