Thu 24 Apr 2008
How to get and restore database backup on linux server
Posted by Tuks under Dedicated Server Hosting , MySQL Tutorials , VPS Hosting , Web Hosting , Web Hosting Articles , Web Hosting UK , cheap linux web hosting , technical supportHello,
For taking backup of you database you have to make sure that you database is good enough. with shell access you can take the database backup in .sql format with following command
#mysqldump user_databasename > database.sql
As you are having database backup and want to restore it then use following command
#mysql user_databasename < database.sql
Leave a Reply
You must be logged in to post a comment.