• The new Python extension is now available. It allows customers to deploy and manage WSGI-based Python applications on their websites directly from Plesk.
  • Debian 11 has reached its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.81 is the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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