• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

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