Vanaf de interface van het bedieningspaneel
Als je toegang hebt tot een controlepaneel zoals cPanel, DirectAdmin enz., is de gemakkelijkste manier om de MySQL-sectie te controleren. Bijvoorbeeld in cPanel , ga gewoon naar MySQL®-databases sectie en u zult de grootte van uw databases zien:
Vanuit de phpMyAdmin-interface
phpMyAdmin is een krachtige MySQL/MariaDB-beheertool. Het meeste configuratiescherm voor webhosting wordt geleverd met phpMyAdmin, maar u kunt het ook zelf op uw account installeren. Het zal veel details over uw databases tonen:
Vanaf de opdrachtregel
Om de grootte van alle databases op de server te krijgen, gebruik:
# mysql -e 'SELECT table_schema AS "Database name", round(SUM(data_length + index_length) / 1024 / 1024,2) AS "Size (MB)" FROM information_schema.TABLES GROUP BY table_schema;'
root@web [~]# mysql -e 'SELECT table_schema AS "Database name", round(SUM(data_length + index_length) / 1024 / 1024,2) AS "Size (MB)" FROM information_schema.TABLES GROUP BY table_schema;'
+------------------------------------+-----------+
| Database name | Size (MB) |
+------------------------------------+-----------+
| abopialo_wp329 | 6.71 |
| adoptwes_wp645 | 92.27 |
| azlsiwor_atut487 | 0.76 |
| azlsiwor_cham191 | 10.14 |
| ipplothost_wp781 | 0.12 |
+------------------------------------+-----------+
Om de exacte waarde te krijgen, verwijdert u de round() functie van het commando.
Om de grootte van alle tabellen uit een specifieke database te krijgen, gebruikt u:
# mysql -e 'SELECT table_name AS "Table", round(((data_length + index_length) / 1024 / 1024), 2) AS "Size (MB)" FROM information_schema.TABLES WHERE table_schema = "->database_name_here<-";'
root@web [~]# mysql -e 'SELECT table_name AS "Table", ROUND(((data_length + index_length) / 1024 / 1024), 2) AS "Size (MB)" FROM information_schema.TABLES WHERE table_schema = "ipplothost_wp781";'
+-------------------------+-----------+
| Table | Size (MB) |
+-------------------------+-----------+
| wptj_term_relationships | 0.00 |
| wptj_options | 0.03 |
| wptj_comments | 0.01 |
| wptj_posts | 0.02 |
| wptj_usermeta | 0.01 |
| wptj_term_taxonomy | 0.00 |
| wptj_terms | 0.01 |
| wptj_users | 0.01 |
| wptj_links | 0.00 |
| wptj_termmeta | 0.00 |
| wptj_commentmeta | 0.00 |
| wptj_postmeta | 0.01 |
+-------------------------+-----------+