• 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

How to kill database cloning on Plesk.

PolM

New Pleskian
Hello, I have a database Clone process on progress for more than 5 days. The process is locked, and I can't start another clone process while it's on progress. How can I kill that process? I tryed restarting plesk, and restarting the server but doesn't work.
I'm on Plesk 11.0.9 Update #35 on DEBIAN 6.0.5
Thank's for all.
 
Solved

http://blogs.reliablepenguin.com/2012/06/16/plesk-howto-clear-hung-database-copy



Recent versions of Plesk include a Make a Copy feature for databases. Unfortunately, on occasion the copy will fail but the copy task will not be removed. Then youll see a message like this every time you go to the affected database in Plesk.

You can view a list of the current tasks with the following command from a root ssh login:

echo "select * from longtasks" | \
mysql --password=`cat /etc/psa/.psa.shadow` -u admin psa

You can clear the task by running the following command:

echo "delete from longtasks" | \
mysql --password=`cat /etc/psa/.psa.shadow` -u admin psa
 
Back
Top