Category: MariaDB
-
MySQL MariaDB export and import database
# Export mysqldump -u [username] -p[password] [database_name] > [dumpfilename.sql] # Import mysql -u [username] -p[password] [database_name] < [dumpfilename.sql]
-
Problem starting MySQL MariaDB: InnoDB: Set innodb_force_recovery to ignore this error.
After trying to import a database I had problem starting mysql. # service mysql start Job for mariadb.service failed because the control process exited with error code. See “systemctl status mariadb.service” and “journalctl -xe” for details. # systemctl status mariadb.service InnoDB: Set innodb_force_recovery to ignore this error. To be able to delete tables in the…