Access to the files like Customer Documents, Web Access Logs, System Backup files enabled through FTP login on neuCRM Server. Before accessing through FTP, it server must be configured at Admin → Settings → Server → FTP Backup menu. This menu is accessible by serveradmin only.
There you must configure FTP Password and Allowed IP Address2. Untill otherwise all configurations are configured perfectly you could not login via FTP.
You can also automate the Downloading of DB Backup by using the script below:
#!/bin/sh FTP_USER="backup" FTP_PASSWORD="password_as_configured" FTP_SERVER="192.168.1.100" FTP_PORT="2121" # do not change it LOCAL_DOWNLOAD_DIR="/media/backup/neucrm/db_backup/" # please note that your client IP must be in Allowed_IP2 list in neuCRM config, otherwise you won't get connected [ -d $LOCAL_DOWNLOAD_DIR ] || exit "$LOCAL_DOWNLOAD_DIR not exists"; cd $LOCAL_DOWNLOAD_DIR && wget -r -N -nH --cut-dirs=1 --ftp-user="$FTP_USER" --ftp-password="$FTP_PASSWORD" ftp://$FTP_SERVER:2121/backup/*.sql.gz.enc echo "Removing Old Backup Files beyond 10 days..." find $LOCAL_DOWNLOAD_DIR/ -type f -mtime +10 | xargs rm -f echo "Done"