• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • 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.

Resolved Unable to back up APS controller data.

Powie

Regular Pleskian
Any idea? On daily backups this log entry is generated:

Warning: Application "joomla"
Unable to back up APS controller data. Error: resource of type aps.environment with id f878015c-8d3a-4c3b-a90f-613f3ae1c961 not found by brokers

Tryed plesk repair db, but this doesn't help.
 
It is APSC database inconsistency. Try to fi it with the following steps (here is just an example, please use your id f878015c-8d3a-4c3b-a90f-613f3ae1c961):

Login to psa database:

Code:
# plesk db

Change the database to apsc:

Code:
use apsc;
Database changed

Find IDs to be removed using uid from the error:

Code:
select * from aps_registry_object where uid='c283f909-ffa8-4b4a-a67c-58ee924f3ce2';
+------+--------------------------------------+--------------+---------------------+---------+
| id   | uid                                  | type         | creation_time       | enabled |
+------+--------------------------------------+--------------+---------------------+---------+
| 2522 | bb5d51e0-4f09-44f1-a072-2bc3ca959b7c | aps.resource | 2014-05-15 23:52:17 | y       |
+------+--------------------------------------+--------------+---------------------+---------+

select * from aps_resource where registry_object_id=2522;
+------+--------------------+--------------------+------------+---------------+--------+
| id   | registry_object_id | parent_resource_id | service_id | resource_type | app_id |
+------+--------------------+--------------------+------------+---------------+--------+
| 2085 | 2522               | NULL               |            | aps.database  | NULL   |
+------+--------------------+--------------------+------------+---------------+--------+

select * from aps_resource_adjacency_list where base_resource_id=2085;
+------+------------------+-----------------------+----------+------------------+--------+----------------+
| id   | base_resource_id | dependent_resource_id | relation | uniqueness_scope | branch | requirement_id |
+------+------------------+-----------------------+----------+------------------+--------+----------------+
| 1531 | 2085             | 2083                  | e        |                  | NULL   | main           |
+------+------------------+-----------------------+----------+------------------+--------+----------------+

Remove the data using IDs above:

Code:
delete from aps_resource_adjacency_list where base_resource_id=2085;
delete from aps_resource where registry_object_id=2522;
delete from aps_registry_object where id=2522;
 
Thanks for this, It seems that this fixes the issue.
It seems that also the database was linked to the wrong user account.

Error:
Warning: Database "joomla_8"
The database 'joomla_8' belongs to the other subscription 'xxxxxxxxxx' and cannot be backed up. To fix it reassign the database via the command 'plesk bin database --assign-to-subscription joomla_8 -domain xxxxx -server localhost:3306'.

Moved the database, backups state xis green now
 
Back
Top