This post has been archived
The content of this post has not been updated since 2016, and may be out of date. Extra care should be taken with any code provided.
Putting this together because I always end up checking online for the correct bash commands for Linux. These commands rely on your knowing for sure which database is which and you should always double check to be sure.
First step is to go to use cd
to change directory to the one in which you want the SQL Dump to appear. The dump will consist of a text file and all the database structure and content included.
cd var/www/example.com
If you want to double check the contents of the directory you are in then simply enter ls
and a list of directories and files will be returned.
ls
When you’re happy you’re in the right directory, we can export the file. In this instance I have a user name (user123
) after the -u
and the database is database_live
and the initial -p
means bash will ask me for the password.
mysqldump -p -uuser123 database_live > mydumpfile.sql
Hit enter, enter the password and after some serious thinking (depending on the size of the database) you’ll be able to enter the next command. Again, entering ls
will allow you to verify there is a file called mydumpfile.sql in the directory.
The next step is then to import the database into your other database. It should be noted that importing the previous dump will with default configuration wipe any existing data during the import into the second database.
In the instance below I have a user name (uuser456
) after the -u
and the database is database_live
and the initial -p
means bash will ask me for the password.
mysql -p -uuser456 database_backup < mydumpfile.sql
Hit enter, enter the password for the user and again it will hang while the details are imported.
November 2024
In today’s digital world, protecting your privacy online has become essential. With personal data constantly being shared, stored, and potentially accessed by unauthorised parties, safeguarding...
→ Continue reading"Simple steps to protect your privacy online"
November 2024
Making the most of Bluesky after coming from whatever Twitter (𝕏) has become involves exploring the platform's unique features, adapting to its smaller, community-driven culture,...
November 2024
With the increasing dependency on web applications in daily operations, securing these applications is paramount to safeguarding data and protecting against breaches. This blog post...