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

Upgrade to plesk 10.4.4 : Table 'mysql.servers' doesn't exist

M

mindor

Guest
Hey,

I'm running plesk 10.3.1 and try to upgrade to 10.4.4. During pre-check it says : WARNING: Table "servers" in database "mysql" does not exists. Please, check http://kb.parallels.com/en/112290 for more details.

The kb didn't helped me to solve the issue.
I tried to run : mysql_upgrade -T --debug-check -u admin -p`cat /etc/psa/.psa.shadow` mysql

And it stops saying :
atmail.awl
Error : Table 'atmail.awl' doesn't exist
status : Operation failed
atmail.recurrencePatterns OK
FATAL ERROR: Upgrade failed

How should I treat this alert ?

Thanks for any hint,
 
There is no table 'atmail.awl' in AtMail 1.04 which installed with Plesk 10.3.1 or Plesk 10.4.4.
But this table presence in AtMail 6 and you can try to create awl table as described here http://www.atmail.com/support/index.php/Atmail6/DatabaseSchema by following SQL query:

CREATE TABLE `awl` (
`username` varchar(100) NOT NULL default '', `email` varchar(200) NOT NULL default '', `ip` varchar(10) NOT NULL default '', `count` int(11) default '0', `totscore` float default '0', `IndexDate` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, PRIMARY KEY (`username`,`email`,`ip`) );

and run mysql_upgrade again.
 
Back
Top