How to check MySQL database size

This article will guide you to calculate size of tables and database in MySQL servers though sql queries. MySQL stored all the information related to tables in database in information_schema database. We will use information_schema table to find databases and tables size. To check single database size in MySQL we may run this query,Please change ‘testdb‘ with your actual database […]

Continue Reading…

How to install cageFS on cPanel

In this article we will guide you with the steps to install cageFS on your server. yum install cagefs /usr/sbin/cagefsctl –init This command will create skeleton directory. If you don’t have enough disk space in /usr/share, use following commands to place cagefs-skeleton into a different location: mkdir /home/cagefs-skeleton ln -s /home/cagefs-skeleton /usr/share/cagefs-skeleton On cPanel servers, if […]

Continue Reading…