Bug cant set password aws rds aurora mysql

0

I cannot change the master password for the rds aws aurora mysql instance. The UI is bugged. Since i cannot upload gifs i have uploaded it somewhere else.

https://i.ibb.co/S5LBP4M/gifBug.gif

Basically i check the "manage password checkbox" and when i click continue, it doesnt give out any error and it shows the checkbox unchecked.

Also if i try to manually set a password when i click the confirm password input textbox, the previous textbox gets reset and vice versa, so i am unable to set a master password.

How do i set it? I am not sire of what i can do as i need to reset the master password but your UI is totally messed up.

MRSir
asked 19 days ago83 views
1 Answer
0

Use AWS CLI

  1. Open your terminal or command prompt.

  2. Run the following command to reset the master password: aws rds modify-db-cluster
    --db-cluster-id your-db-cluster-id
    --master-user-password new-password
    --apply-immediately

  3. Replace your-db-cluster-id with the identifier of your Aurora cluster and new-password with the new master password you want to set.

  4. Check the status of the cluster to ensure the modification is applied: aws rds describe-db-clusters --db-cluster-id your-db-cluster-id

profile pictureAWS
EXPERT
Deeksha
answered 19 days ago
profile picture
EXPERT
reviewed 19 days ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions