I use the SSH/SFTP server components for a small managed SFTP server and it has been working flawlessly for over a month and half. I run it as a win32 service on windows server 2012 and the memory usages is stable, it hovers around 5mb according to the resource monitor, it does go up when really busy to 7 or 8 mb, but then goes back down to 5.
So last night around 8:29pm one of the biggest users could not upload files, they could logon and disconnect but when they tried to upload the log recorded this:
Code: Select all
Cannot create event: Error Code 161, Error MSG:The specified path is invalid.
Restarting the service cleared the issue, so I am thinking the handle from the createevent is maybe not being closed and the process is running out of handles after a long time?
About a month and a half ago I got a similar error when testing on my laptop (which has way less resources than the server) and I was able to get a create event error using filezilla with a bunch of concurrent uploads.
I believe I modified the createevent code in ssh server a bit so it would show the error message as well as the last error code.
Any ideas on how to track this issue down?