Question
MySQL crashing now and then. Can u help me with log?
Hello, I’m facing some MySQL crashes. I’m on a Ubuntu 12.04.5 LTS X64 (The most basic droplet) and using “SELECT VERSION();” I got MySQL version 5.5.38-0ubuntu0.12.04.1
I have Zpanel installed, because for now I don’t have that many customers to use something as good as Cpanel. I have 3 sites on that server, my newest.
I don’t know what’s causing this crashes and maybe you guys could help out seeing the log. Can you? Please?
Log file: http://vulcanus.com.br/MySQL.txt
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×
My best advice would be to separate all your sites in different droplets and different droplets to host databases as well, instead of jamming everything in the same space.
At the end of the day, you pay the same and have a more tidy work.
If you read the first lines in the log it says InnoDB engine is not supported. Perhaps some table is created to use InnoDB.
To show installed MySQL Engines:
SHOW ENGINES;
To show how a particular table is created:
use my_database;
SHOW CREATE TABLE my_table;
Regards.