• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • 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.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Cron Job to Repair / Optimise All Mysql Databases in Plesk11

tenoch

New Pleskian
Hi
I was using Plesk 10 before
And this commands were working very well, to repair and optimise all mysql tables

When I logged in SSH, with my main admin password,

username
password

And then typed
su -
And enter my password, this command worked just like this:

mysqlcheck -r -uadmin -pPASSWORD -A
mysqlcheck -o -uadmin -pPASSWORD -A

Since Plesk 11 Upgrade

This don´t work anymore

And I recieved the error:
mysqlcheck: Got error: 1045: Access denied for user 'admin'@'localhost' (using password: YES) when trying to connect

How can I make his work again

I have tried to change
admin
with
my username
or even
root

But nothing seems to work


Any help is appreciated

Thanks
 
Hi
Sorry for the delay

Yes, after executing this command
mysql -uadmin -p`cat /etc/psa/.psa.shadow`

I recieved a welcome message, and there are not errors

So, what else can I do?
Replace the password with this
`cat /etc/psa/.psa.shadow`
?


Thanks
 
Why you can't use command like:

# mysqlcheck -r -uadmin -p`cat /etc/psa/.psa.shadow` -A
 
Back
Top