add new DB inside aurora cluster

0

Hi Team,

I would like to know how can I add a second Database in my RDS aurora DB? each time I "create Database" it will create a new cluster, but I don't want a new aurora cluster I just want to have another DB inside the same cluster.

Jess
已提问 2 年前2831 查看次数
2 回答
0
已接受的回答

You need to connect to your cluster using the master user and simply create a new DB using SQL. For example:

CREATE DATABASE mydatabase;
profile picture
MG
已回答 2 年前
profile picture
专家
已审核 21 天前
  • how can connect to my cluster using bastion host with a command line connect to it?

  • Please take a look at Karthikeyan answer, he explained how to connect to the RDS Cluster :) If you need to connect through a bastion host, remember about properly configuring SecurityGroups and enabling SSH Agent forwarding in your ssh client.

0

Hi AWS-User-5483303,

If you are trying to connect to the Aurora DB instance from you bastion, there are few pre checks that you might need to do before using the command line to connect to the aurora instance,

Prechecks:

  • Ensure that your bastion instance is able to reach to the aurora cluster(Assuming both Aurora DB instance and Bastion host are in same VPC).For this to happen, you have to ensure that Aurora Cluster Security Group allows bastion security group to connect over the Aurora DB instance over the desired port (Default -> MYSQL 3306; PSQL 5432). Meaning to say inbound rule of Aurora SG should allow Bastion SG on desired port number
  • You should have installed the desired driver for you to connect to aurora DB instance. Depending on the Aurora engne(MYSQL/PSQL), install the desired driver for you to connect to the instance.

Connectivity Steps:

Follow the below documentation once you are done with the prechecks:

https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Connecting.html

Below are the commands to connect based on the engine:

  • MYSQL -> mysql -h <<db_writer/reader_endpoint>> -d <<database_name>> -u <<username>> -p
  • PSQL -> psql -h <<db_writer/reader_endpoint>> -d <<database_name>> -U <<username>> -W

Once you connect you should be able to create database using the command "CREATE DATABASE <<dbname>>;"

已回答 2 年前
profile picture
专家
已审核 21 天前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则