• The new Python extension is now available. It allows customers to deploy and manage WSGI-based Python applications on their websites directly from Plesk.
  • Debian 11 has reached its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.81 is the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

How to delete migrations from list?

cmaxwell

Regular Pleskian
Does anyone know how to delete migrations from the list of migrations on Plesk 8.2.1 if they were made with the RPC?

I have made a lot of migrations via the RPC and they all stay listed in the list of migrations without the option to remove them. Is there a way?

Thanks.

Chris
 
Hello,

Generally the migration status is displaying in Plesk CP until you press OK button. In Plesk CP go to the PMM, select any migration and click OK, there will be the checkbox whether you want to keep the temporary files, do not check it - do not leave the temporary files (they take a lot of space) and press OK. The migration status will be removed from the list as far as I know.
 
Hi Julia,

I am referring to migrations which were started by the Plesk API - these don't have any controls whatsoever in the control panel other than they show in the list of migrations.

Chris
 
Ok, I got it.
Then, most probably the list of the migration exists in the database, PMM table.
Run:
mysql> delete from PMM;

That should clear the records.
 
Back
Top