- Notifications
You must be signed in to change notification settings - Fork 766
Description
i use mssql-server-linux in my Mac docker.there are some steps in my installing.
1.i run those in terminal,and sqlserver is working;
sudo docker pull microsoft/mssql-server-linux
docker create -v /var/opt/mssql --name mssql microsoft/mssql-server-linux /bin/true
docker run -e 'ACCEPT_EULA=Y' -e 'SA_PASSWORD=zhaobo134SA@' -p 1433:1433 --volumes-from mssql microsoft/mssql-server-linux
2.i use sql-cli (get from npm as offical document said),then runing mssql -s localhost -u sa -p zhaobo134SA@.but it shows Login failed for user 'sa'. Reason: An error occurred while evaluating the password. [CLIENT: 172.17.0.1] in logs.
i doubt that is my password wrong? i remember the default password of sa is 'root' or '1234',but didn't work.
In china ,i don't found any useful solution. so,could you tell me what is going on?