Question: How can I view SQL Server Logging on Linux ? Answer: SQL Server on Windows - logs details into SQL Server Error logs and Application Logs. Windows event viewer details are available in the Windows Event Logs via the event viewer or Powershell Get-EventLog 1) SQL Server logs details in the SQL Server error log file and the Linux log usually , /var/opt/mssql/log/ 2) Use the journalctl command --show all the log messages since last reboot journalctl -b --list by boot number, step 1 generate list of boot numbers. Use the index number (the first column) from command 1... Read more →