Created on
04-18-2024
04:06 AM
Edited on
02-17-2025
05:54 AM
By
Anthony_E
Description | This article describes how to restore file permissions in local and NFS Online storage. |
Scope | FortiSIEM. |
Solution |
For some reason, processes on the NFS server or in its management may cause modification to permissions of files in/data and prevent the FortiSIEM from reading and/or writing to the disk.
From the super CLI as root, use the following commands to restore the proper permissions in/data:
chmod 755 /data chmod 755 /data/* find /data/cache -type d -exec chmod 775 {} \; find /data/custParser -type f -exec chmod 664 {} \; chmod 775 /data/eventDataSum chmod 700 /data/eventdb/* find /data/*Xml/* -type f -exec chmod 644 {} \; find /data/precomputedb/ -type d -exec chmod 700 {} \;
These commands may take time to process if there is a large amount of data stored in the /data disk. |