• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

Resolved Database Task does nothing

hauke

New Pleskian
I started a "check" on a database and this task does nothing and apears every time I log on.
The database itself is in order (a second check went through). What can I do?

temp.png
 
Hi hauke,

your previous task didn't seem to finish correctly, so that Plesk didn't delete the ( temporary ) task. Pls. consider to use the "Plesk repair utility", with the example command ( logged in as user "root" over SSH ) :

plesk repair db -y -v


Pls. consider to read as well the Plesk documentation, in order to inform yourself about additional options and descriptions:

 
Hi hauke,

pls. login to your Plesk database ( as user "root" over SSH ) :

plesk db

Find the task, which is unfinished/broken/hanging, by listing the tasks:
Code:
mysql> select * from longtasks;


Delete the task with for example:
Code:
mysql> delete from longtasks where id=X;
( where "X" is the number of the ID, which you would like to delete ).


Exit MySQL:
Code:
mysql> exit
 
Back
Top