Technical Tip: Procedure to delete older logs from FortiPAM
| Description | This article describes how to configure FortiPAM to purge or delete older logs. |
| Scope | FortiPAM. |
| Solution | GUI option:
CLI option (To do it manually): The option is via SSH, and to delete the old files:
cd /var/log
Delete with:
find /var/log -type f -mtime +30 -delete
Note: This deletes logs older than 30 days.
If it is using video recording storage:
find /data/video/ -type f -mtime +30 -delete
Combined Recommendation In case there is no disk space:
Best practices
|
