How to reset Linux SQL Server SA Password
Linux SQL server is giving many features as like windows versions. I’m trying to use all features which are available on windows SQL servers. So I started with troubleshooting features. And I found that the Microsoft documentation explains how to reset the SA password.
sudo systemctl stop mssql-server.service
sudo /opt/mssql/bin/sqlservr-setup
sudo systemctl start mssql-server.service
OR
You can go to MSSQL directory and run the SA password reset script.
.......... Click here