One issue that might show up with any type of server is filling up diskspace with log files. This bash script can be modified to SCP and remove any type of file, but this demo bash script is for Check Point Firewalls.
first, you’ll need to find the $FWDIR for your version:
echo $FWDIR
/opt/CPsuite-R71/fw1
Here is the complete script to scp log files that are older than 30 days, then remove them
!#/bin/bash
VERSION=/opt/CPsuite-R71/fw1
# If you want to script the SCP'ing of old files:
find $VERSION/log/*.* -type f -mtime +30 -exec scp {} admin@192.168.1.2:/home/admin/ \;
# And if you want to delete the files after you SCP them, there are two methods:
find $VERSION/log/*.* -type f -mtime +30 | while read i; do rm "$i"; done
And that's it. Schedule it with cron to test logs each day. If you want to automate it, you'll to setup ssh keys between servers.