• 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.

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