Mysql

Posts tagged with

Sorry! This site is experiencing technical difficulties.

This error happened to the mysql user and password not being correct on file. Change the setting in LocalSettings.php. You can verify whether the details you have are correct by logging into the mysql database mysql -u ''wikiuser'' -p ''wikipassword'' where of course you have to replace the user 


Read more →

MySQL backup and restore

To backup a single database: mysqldump --user=root --password=password mydb > mydb.sql Yes it is no typo, there is no space between the -p and the password! You may like to add this to the my.cfg file in etc to avoid [mysqldump] events ignore-table=mysql.events If you didn’t use the 


Read more →