• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

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