• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.

SA account LOCKED OUT !

T

Toepes

Guest
When a user tried to access his MSSQL database he reveived this message:

Error: Unable to update database parameters: Try to establish connection failed: Login failed for user 'sa' because the account is currently locked out. The system administrator can unlock it..


He asked me to unlock: Now I have the same error and i can't find how to UNLOCK !

Can anyone help me ?
 
Try to use this command in cmd on your server:

osql -E -Q "ALTER LOGIN [user] DISABLE"

where user is the user name.

Or, posibly, this might be useful:

osql -E -Q "USE [master] GO grant CONNECT SQL TO [user] GO"
 
Code:
mysql -P 8306 -u admin -p
use lockout;
delete from lockout where login='admin';
 
Check your security local polices

adminstrative tools / local policies

find the option that block login after many attempts

maybe this can help you
 
Today I have run into the same situation. I'm locked out of SQL Server and can't even log on with Windows Authentication. Luckily I find a program - SQL Server Password Changer, and it helps me unlock my locked sa account.
 
Back
Top