How to create a MySQL schema after starting an instance in AWS-RDS?

0

I'm starting with the AWS Relational Database Service. I have already started a MySQL instance and now the next steps are:

  • Run the sql that creates the schema and tables,
  • Run the sql that inserts the data.
  • How could I do this? Is it possible to connect using the workbench or heidsql?

        
    asked by anonymous 26.10.2017 / 22:07

    1 answer

    1

    If your instance is publicly accessible, simply configure ip, port, user, and password in the Workbench. If your instance only has access within your VPC, you must configure the connection via SSH using your access key (.pem).

    A tutorial that can help: link

        
    27.10.2017 / 15:38