synchronize is not deleting web Logs from SFTP Server
Have a server environment that does not have log storage. So, we SFTP web logs to the SFTP server and then pull them from the SFTP server.. The "to the SFTP" works great.
The "from the SFTP" is in question.
Here the script portion in question:
so basically the process never moves (or even copies) the files from the SFTP Server to the log store.
Thanks!
The "from the SFTP" is in question.
Here the script portion in question:
option batch abort option confirm off open login@1.1.1.1 # binary synchronize local -delete "/home/login/client/01/*.*" "D:\Program Files\Logs\ClientServer01\" synchronize local -delete "/home/login/client/01/subfolder/*.*" "D:\Program Files\Logs\ClientServer01\subfolder\" synchronize local -delete "/home/login/client/01/tomcat/*.*" "D:\Program Files\Logs\ClientServer01\tomcat\"
so basically the process never moves (or even copies) the files from the SFTP Server to the log store.
Thanks!