28

I've created a RDS instance called realcardiodb (the engine is mysql) and I've exported my database from my localhost. File is saved locally called localhostrealcardio.sql

Most research says to use mysqldump to import data from a local system to a web server, but my system doesn't even recognize mysqldump.

C:\xampp\mysql>mysqldump
'mysqldump' is not recognized as an internal or external command, operable program or batch   file. 

How do I resolve this error should I use mysqldump? (I definitely have mysql install on my system)

Is there a better utility I should use?

Any help is appreciated, especially if you have experience importing mysql to aws rds.

Thanks! DK

Update 7/31/2012 So I got the error resolved. mysqldump is in the bin directory C:\xampp\mysql\bin>mysqldump AWS provides the folloinwg instructions for uploading a local database to RDS:

mysqldump acme | mysql --host=hostname --user=username --password acme

Can someone break this down for me?

1) Is the first 'acme' (after mysqldump command) the name of my local database or the exported sql file I saved locally?

2)Is the hostname the IP address, Public DNS, RDS Endpoint or neither?

3)The username and password I assume is the RDS credentials and the second acme is the name of the database I created in RDS.

Thanks!

David Csonka
  • 775
  • 7
  • 10
Derek
  • 475
  • 1
  • 9
  • 18
  • Looks like this might be as simple [as a PATH env variable problem.](http://forums.mysql.com/read.php?28,24329,24375#msg-24375) Afraid I can't help more. I'm not a Windows user. – Christopher Jul 31 '12 at 13:28

6 Answers6

50

This is how I did it for a couple instances that had data in the MySQl tables.

The steps to creating an RDS database instance: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_GettingStarted.CreatingConnecting.MySQL.html

Note: Make sure the RDS instance has a security group configured that relates to the EC2 security group. http://docs.amazonwebservices.com/AmazonRDS/latest/UserGuide/USER_Workin...

Before we go forward, let me provide a list of what some of the following placeholders are:

  • host.address.for.rds.server = this will be what is referred to as the "end point" in your RDS description/settings page.
  • rdsusername = the master user account which you created during RDS setup.
  • rdsdatabase = a blank database which you created inside the server on your RDS instance.
  • backupfile.sql = the sql dump file your made of your pre-existing installation's database.

Once you've created a fresh RDS database instance, and have configured its security settings, log into this server (from within an ssh session to your EC2 server) and then create an empty database inside the instance using basic SQL commands.

mysql -h host.address.for.rds.server -P 3306 -u rdsusername -p
(enter your password)
create database rdsdatabase;

Then quit out of the MySQL environment inside your RDS server.

\q

This tutorial assumes you already have a backup from your old database. If you don't, go create one now. After that, you’re ready to import that sql dump file into the empty database waiting on your RDS server.

mysql -h host.address.for.rds.server -u rdsusername -p  rdsdatabase < backupfile.sql

It might take a few seconds to complete, depending on the size of the sql dump file. Your indication that it is finished is that the bash command prompt reappears.

Note: the command “mysqlimport” is used when imported data directly into an existing table inside a database. It might seem like we’re “importing” data, but this is not what we’re actually doing in this situation. The database we are migrating to has no tables yet, and the sql dump file we’re using contains the sql commands to generate the tables it needs.

Confirm the Transfer

Now, if you didn't get any error messages, then your sql transfer probably worked. If you want, you can double check to see if it did by connecting to your RDS database server, looking up the database you created, and check to see if the tables are now present.

mysql -h host.address.for.rds.server -P 3306 -u rdsusername -p
(enter your password)
use rdsdatabase;
show tables;
acobster
  • 1,637
  • 4
  • 17
  • 32
David Csonka
  • 775
  • 7
  • 10
  • First link is dead. Would you please check? – SkyWalker Dec 02 '16 at 12:18
  • @David Csonka Where I need to keep my backupfile.sql? – DD77 Dec 24 '16 at 08:01
  • @DD77 you can keep it anywhere on your local file system, or wherever you're running `mysql` from. The `mysql` CLI just needs the path to it; the command `mysql -h host.address.for.rds.server -u rdsusername -p rdsdatabase < backupfile.sql` assumes you are running it from the directory where backupfile.sql lives, but you could just as easily run `mysql ... < /some/random/path/to/backupfile.sql`. – acobster Jan 12 '17 at 18:30
  • @acobster I don't have the file locally unfortunately. I have a 15 gb .sql file stored on my AWS S3. Is there anyway to load that sql file from my S3 server to my RDB server? – jhub1 Feb 26 '17 at 01:22
  • I have dump file of all database how to restore that all by creating automatic databases instead dump into rdsdatabase – Chintan7027 May 02 '17 at 08:58
  • This is the only thing that helped me, thank you so much! In a rage with AWS after reading various versions of the docs, downloading and trying to compile some linux software to backup the database (as recommended by the docs) why the hell don't they just tell us to do this? – user115014 Nov 22 '17 at 17:06
27

I prefer using MySQL workbench. It's much more easier & user friendly than the command line way.

It provides a simple GUI.

MySQL workbench or SQL Yog.

These are the steps that I did.

1) Install MySQL Workbench.

2) In AWS console, there must be a security group for your RDS instance. Add an inbound rule to that group for allowing connections from your machine. It's simple. Add your IP-address.

3) Open MySQL workbench, Add a new connection.

4) Give the connection a name you prefer.

5) Choose connection method- Standard TCP/IP

6) Enter your RDS endpoint in the field of Hostname.

7) Port:3306

8) Username: master username (the one which which you created during the creation of your RDS instance)

9)Password: master password

10) Click Test Connection to check your connection.

11) If connection is successful, click OK.

12) Open the connection.

13) you will see your database 'realcardiodb' there.

14) Now you can export your mysqldump file to this database. Go to-> Server. Click Data Import.

15) You can check whether the data has been migrated by simply opening a blank SQL file & typing in basic SQL commands like use database, select * from table;

That's it. Viola.

Smokey
  • 1,857
  • 6
  • 33
  • 63
  • When you create an RDS instance using the wizard, a security group with your machine’s IP address is created for you automatically with a group like `rds-launch-wizard`. – johnnieb Jan 27 '17 at 21:37
4

If you have a backup.sql in your PC, No need to transfer to EC2. Just give below line on your terminal in your PC.

$ mysql -h rdsinstance-hostaddress-ending.rds.amazonaws.com -u rds_username -p  rds_database < /path/to/your/backup.sql

Enter password: paswd_mysql_user

That's all.

Import backup directly from existing remote server

SSH connect to your remote server

Get the remote server mysql backup (backup/path/backupfile.sql)

Import backup file to RDS mysql while you in remote server shell

mysql -h your-mysql-instance.region.rds.amazonaws.com -u db_username -p db_name < backup/path/backupfile.sql

Note:

I have tried all the above criteria to import my existing backup to new RDS database, including through EC2 as in AWS documentation. It was a 10GB backup. So I have tried tables by tables as well. It shows process completed but some data were missing for large tables. So I had to write a DB to DB data migration script.

Sadee
  • 3,010
  • 35
  • 36
2

Using work bench :

  1. setup connection

  2. go to management tab and click on data import/restore

  3. click on import from self contained file .

  4. choose your mysqlbackup.sql file.

  5. select default database.

  6. click on start import button.

Using command line (On Windows ) :

mysqldump -u <localuser>

--databases world 
--single-transaction 
--compress 
--order-by-primary  
-p<localpassword> | mysql -u <rds-user-name>
    --port=3306 
    --host=ednpoint 
    -p<rds-password>

For more detail please refer : https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/MySQL.Procedural.Importing.SmallExisting.html or https://docs.bitnami.com/aws/how-to/migrate-database-rds/#using-phpmyadmin-110

Hope it helps.

CKE
  • 1,533
  • 19
  • 18
  • 29
1

The step by step instruction on how to migrate already existing db on mysql/mariadb to already running RDS instance.

0

Here is the AWS RDS Mysql document to import customer data into RDS

http://aws.amazon.com/articles/2933

  • Create flat files containing the data to be loaded
  • Stop any applications accessing the target DB Instance
  • Create a DB Snapshot
  • Disable Amazon RDS automated backups
  • Load the data using mysqlimport
  • Enable automated backups again
Sathish
  • 3,477
  • 3
  • 26
  • 28