Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
The APS Catalog has been deprecated and removed from all Plesk Obsidian versions. Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.
I find it surprising that disk usage in Plesk 10 for accounts is actually hugely incorrect. It is only showing 3mb+ when my client has uploaded more than 200mb onto the account.
PROBLEM DESCRIPTION AND STEPS TO REPRODUCE
The statistics are now display for some domains after server migration.
The statistics for all domains are inacurated.
I try to update manually the statics by domain using:
/usr/local/psa/admin/sbin/statistics --calculate-one --domain-name=DOMAINNAME.com
I get the following result
statistics: MySQL error 1049: Unknown database 'mysql754aefbcdb1f4c04b6758b5066644914' executing query: SHOW TABLE STATUS FROM `mysql754aefbcdb1f4c04b6758b5066644914`
statistics: MySQL error 1049: Unknown database 'mysql754aefbcdb1f4c04b6758b5066644914' executing query: SHOW TABLE STATUS FROM `mysql754aefbcdb1f4c04b6758b5066644914`
Also if I try to update all statistics:
/usr/local/psa/admin/sbin/statistics --calculate-all
I get the same result:
statistics: MySQL error 1049: Unknown database 'mysql754aefbcdb1f4c04b6758b5066644914' executing query: SHOW TABLE STATUS FROM `mysql754aefbcdb1f4c04b6758b5066644914`
statistics: MySQL error 1049: Unknown database 'mysql754aefbcdb1f4c04b6758b5066644914' executing query: SHOW TABLE STATUS FROM `mysql754aefbcdb1f4c04b6758b5066644914`
ACTUAL RESULT
No statistics are calculated for all domains.
The command line statistics fail.
EXPECTED RESULT
To calculate the space used and all the statistics for domains
ANY ADDITIONAL INFORMATION
I do a mysql check no errors in databases.
I need information to solve it.
--------------------------------------------------------------
PROBLEM DESCRIPTION AND STEPS TO REPRODUCE
The statistics are now display for some domains after server migration.
The statistics for all domains are inacurated.
I try to update manually the statics by domain using:
/usr/local/psa/admin/sbin/statistics --calculate-one --domain-name=DOMAINNAME.com
I get the following result
statistics: MySQL error 1049: Unknown database 'mysql754aefbcdb1f4c04b6758b5066644914' executing query: SHOW TABLE STATUS FROM `mysql754aefbcdb1f4c04b6758b5066644914`
statistics: MySQL error 1049: Unknown database 'mysql754aefbcdb1f4c04b6758b5066644914' executing query: SHOW TABLE STATUS FROM `mysql754aefbcdb1f4c04b6758b5066644914`
Also if I try to update all statistics:
/usr/local/psa/admin/sbin/statistics --calculate-all
I get the same result:
statistics: MySQL error 1049: Unknown database 'mysql754aefbcdb1f4c04b6758b5066644914' executing query: SHOW TABLE STATUS FROM `mysql754aefbcdb1f4c04b6758b5066644914`
statistics: MySQL error 1049: Unknown database 'mysql754aefbcdb1f4c04b6758b5066644914' executing query: SHOW TABLE STATUS FROM `mysql754aefbcdb1f4c04b6758b5066644914`
ACTUAL RESULT
No statistics are calculated for all domains.
The command line statistics fail.
EXPECTED RESULT
To calculate the space used and all the statistics for domains
ANY ADDITIONAL INFORMATION
I do a mysql check no errors in databases.
I need information to solve it.
--------------------------------------------------------------
After search for a while, I found the problem and how to solve.
Problem:
Some database related in the psa.data_bases with users in psa.db_users and passwords in psa.accounts doesn't exists in mysql database catalog.
So I get the info to recreate the database:
select db.name, login, password from data_bases db inner join db_users u on db.id = u.db_id inner join accounts a on a.id = u.account_id where name = 'mysql754aefbcdb1f4c04b6758b5066644914'
Go to the plesk panel, remove the db users, remove the db. Then recreate the db and users.
After that run the command to recreate statistics, and all works.