sessions files on server
Hello, in my server there is a folder named session (C:\ScreenConnect\App_Data\Session) in which there are more than 20000 files, and the total space occupied is more than 200GB. Is it possible to delete the older ones? Moreover, the DB of the application is almost 2 GB, and in the last days I'm facing a strange problem: all the clients get disconnected at the same time and I have to reboot the server. Is this problem due to the DB size, or the excessive number of files in the Session folder, or anything else?
This is most likely due to huge db size and crappy SQLite 3 engine.Session.db and Security.db are the main files in use. There's also .db-wal and .db-shm for those 2 that need to be saved. You can attempt using MSSQL Express 2019 to reach better performance.
We have the same problem and just moved to MSSQL so will see if it helps with the webapp freezes.