- START MYSQL using admin user
- mysql -u admin-user -p (ENTER PASSWORD ON PROMPT)
- Create a new user:
- CREATE USER 'newuser'@'%' IDENTIFIED BY 'password'; (% -> anyhost)
- Grant Privileges:
- GRANT SELECT,DELETE,INSERT,UPDATE ON db_name.* TO 'newuser'@'%';
- FLUSH PRIVILEGES;
If you are running EC2 instance don't forget to add the inbound rules in security group with MYSQL/Aurura.
If these steps didn't work check /etc/mysql/my.cnf file and edit the
bind_address param as
bind_address=0.0.0.0