• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

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