We are testing Jitbit Helpdesk self-hosted app on a linux server that has aspnet-core6 installed and we are getting an error:
Jitbit Helpdesk[3516]: System.IO.FileLoadException: Could not load file or assembly 'Microsoft.Data.SqlClient, Version=5.0.0.0, Culture=neutral, PublicKeyToken=23ec7fc2d6eaa4a5'. Access is denied.Answer:
Linux has known problems unzipping archives created on Windows (and our releases are assembled on Windows-based build-machines).
After you extracted the files - make sure that all directories and subdirectories at the destination have correct permissions after unzipping. If you just used "unzip filename.zip ~/destination" then the unzip command might sometimes create subfolders with limited permissions. You can simply run "sudo chmod -R 777 /path/to/helpdesk" after unzipping as a workaround (replace "777" with your desired permissions)