This error is shown when you access an application link in the 'Applications' tab in Parallels Plesk Panel:
Internal error: Can not find registry resource for Application ID fbea5fe0-7e00-42fb-9fa0-e4fd2e664f8bResolution
Can not find registry resource for Application ID fbea5fe0-7e00-42fb-9fa0-e4fd2e664f8b
1.Check there is an aps_registry_object record for this application ID:
mysql> select * from aps_registry_object where uid='fbea5fe0-7e00-42fb-9fa0-e4fd2e664f8b';2.Check for this application in the PSA database:
Empty set (0.00 sec)
mysql> select * from apsContextsApplications where registryApplicationId='fbea5fe0-7e00-42fb-9fa0-e4fd2e664f8b';In the above example, records show for the broken application and its corresponding domain.
+----+--------------+--------------------------------------+
| id | apsContextId | registryApplicationId |
+----+--------------+--------------------------------------+
| 19 | 17 | fbea5fe0-7e00-42fb-9fa0-e4fd2e664f8b |
+----+--------------+--------------------------------------+
mysql> select * from apsContexts where id=17;
+----+-----------+---------+-------+----------------+
| id | pleskType | pleskId | ssl | subscriptionId |
+----+-----------+---------+-------+----------------+
| 17 | hosting | 530 | false | 527 |
+----+-----------+---------+-------+----------------+
mysql> select name from domains where id=530;
+-------------------+
| name |
+-------------------+
| domain.tld |
+-------------------+
3. Remove inconsistent records from PSA database:
mysql> delete from apsContexts where id=17;
mysql> delete from apsContextsApplications where apsContextId=17;
Không có nhận xét nào:
Đăng nhận xét