Hi @Alejandro Warren,
The SQL Server Database Engine logs to the /var/opt/mssql/log/errorlog
file in both the Linux and container installations. You need to be in superuser mode to browse this directory.
The installer logs here: /var/opt/mssql/setup-<time stamp representing time of install>
You can browse the errorlog files with any UTF-16 compatible tool like vim or cat like this:
BashCopy
sudo cat errorlog
If you prefer, you can also convert the files to UTF-8 to read them with more or less with the following command:
BashCopy
sudo iconv -f UTF-16LE -t UTF-8 <errorlog> -o <output errorlog file>
Please check the error log so that we could get more details.
Regards,
Zoe Hui
If the answer is helpful, please click "Accept Answer" and upvote it.