• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Question Wrong attributes for the column 'login' in the table 'sys_users'

Dukemaster

Regular Pleskian
Hi,
since long time I had no errors by running: # plesk repair all -n
After testing today I got the following error under section Checking the structure of the Plesk database
Code:
Wrong attributes for the column 'login' in the table 'sys_users': . [ERROR]
    - The attribute 'type' value mismatch: varchar(32) in the
      original schema and varchar(20) in the Plesk database.

Do you have an idea how to fix it?

(To prevent greater damage or getting no access to server/database)
Greets
 
Make sure that you have varchar(20) here:

Screenshot at Apr 19 09-58-55.png

You can correct it with

Code:
mysql> alter table sys_users modify login VARCHAR (32) NOT NULL;

but I thought that

Code:
# plesk repair db

should fix it too.
 
Back
Top