• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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