MySQL Database cannot be accessed because the Server’s storage is exhausted.
One of the application crashed and was displaying error messages. One of the most highlighted error message is that the application itself cannot connect to MySQL server.
This is step-by-step actions taken to resolve the problem :
- To be able to resolve the problem, we have to check it first by logging in to the database server which is represented by the IP Address of the database server itself.
Connect with the following command :
ssh username@IP_Address_Database_Server
- Try to log in to MySQL Console by executing the following command :
mysql -uroot -p
There is an error when we are trying to connect to MySQL console which the error itself can be specified as follows :
Can't connect to local MySQL server through socket '/var/mysql/mysql.sock' (38)
It means that we cannot connect to MySQL Server but before we go further, we have to check the status of MySQL service as follows :
systemctl status mysql.service
It can be shown as follows :
Continue reading “Cannot Access MySQL because Alfresco’s log consumed space storage”