Core component of SQL Server for storing, processing, and securing data
Hi @Domouchtsis, Petros ,
This shouldn’t happen restore may fail, but SQL Server should not crash.
Try these key checks:
- Validate logical files (RESTORE FILELISTONLY)
FROM DISK = '/var/opt/mssql/backup/TEST_DB.bak';
Ensure you have MOVE for all files (not just MDF/LDF).
- Isolate the issue
- Restore the same backup on SQL Server 2025 (Windows) / 2019/2022
- Or restore a different backup on Linux
Helps confirm if it’s backup-specific or Linux issue
- Check logs
- /var/opt/mssql/log/errorlog
- Important If it still crashes, this is not expected → likely Linux limitation or product bug
In that case, collect logs and raise a Microsoft support ticket.
Thanks,
Akhil.