• The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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