psa.lockout

Overview
The lockout table contains IP addresses which have had failed Plesk logins.

Column Descriptions
login - login username that was used
last_wrong - when the last login was attempted
attempts - how many attempts were made

Table Structure

CREATE TABLE `lockout` (
 `login` VARCHAR(20) character SET utf8 NOT NULL DEFAULT '',
 `last_wrong` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP on UPDATE CURRENT_TIMESTAMP,
 `attempts` INT(11) NOT NULL DEFAULT '1',
 PRIMARY KEY  (`login`)
) ENGINE=INNODB DEFAULT CHARSET=latin1

Related documentation

  • No related documentation available