I have created Amazon RDS instance, but can't create stored procedures in it because I am missing super user privilege. How do I get super user privileges?
Instance: MySQL 5.7.11
I have created Amazon RDS instance, but can't create stored procedures in it because I am missing super user privilege. How do I get super user privileges?
Instance: MySQL 5.7.11
You will not get super privilege in AWS RDS, but there is a way to disable binary logging (thereby removing the need to have SUPER privileges for creating triggers). This is done by setting the variable log_bin_trust_create_function_creators to 1.
log_bin_trust_create_function_creators
to 1 for that parameter grouplog_bin_trust_create_function_creators
is labeled as dynamic vairable, and therefore shouldn't require a restart, but I have always needed to reboot the RDS instance for the change to take effect. Perhaps there is another way but I haven't found it.