Archive

Posts Tagged ‘mysql’

Several ways to reset MySQL root password

Few ways to reset MySQL password

Several ways to reset MySQL password

This post provides instructions that helps to reset MySQL root user account password, regardless of what reason you have for resetting it.
Read more…

Tips

Backup and restore a single MySQL table

mysql-backup-restore-table

Dump a single table to a SQL file:

mysqldump -uuser -ppassword dbName tableName > backup.sql

Read more…

Tips

Enabling InnoDB storage engine in MySQL

enable_innodb

MySQL is capable to store data in a variety of formats. The default format is MyISAM which offers performance and it is used by most web services. InnoDB is transactional and it is used in heavy environments thanks to row-level locking.

Last days I tried to install a PHP application on server and I got the error "InnoDB storage engine is not supported".

To enable InnoDB – follow these steps:

Read more…

Tips