Quantcast
Channel: MySQL/Amazon RDS error: "you do not have SUPER privileges..." - Stack Overflow
Browsing all 11 articles
Browse latest View live

Answer by Daniel Viglione for MySQL/Amazon RDS error: "you do not have SUPER...

The answer marked with over 200 votes is the answer in an ideal situation where the sql file has acceptable commands the RDS Service honors. It’s very important to note that the Parameter Group...

View Article



Answer by etlapa for MySQL/Amazon RDS error: "you do not have SUPER...

The right way to set up a parameter in AWS/RDS is by creating a parameter group just like the other responses mentioned here.For this particular case, set the variable log_bin_trust_function_creators...

View Article

Image may be NSFW.
Clik here to view.

Answer by jeremy for MySQL/Amazon RDS error: "you do not have SUPER...

To complete @arun-r's answer, a reboot is necessary when you create a new parameter group.

View Article

Answer by Damien Frances for MySQL/Amazon RDS error: "you do not have SUPER...

After used arun-r answer, if the problem is not solved you need to modify your dump file. It is simple.In the dump file you will find lines like :DELIMITER ;;CREATE...

View Article

Answer by Yep_It's_Me for MySQL/Amazon RDS error: "you do not have SUPER...

For me, there was only 2 commands in my dump file which required SUPER privileges:SET @@GLOBAL.gtid_purgedSET @@SESSION.SQL_LOG_BINAccording to the mysqldump docs you can disable these with...

View Article


Answer by Jubba Smail for MySQL/Amazon RDS error: "you do not have SUPER...

In addition to editing log_bin_trust_function_creators = 1you need to remove all DEFINER from your dump file, check the following link for SED command that can help cleaning your sql dump...

View Article

Answer by Josh Woodcock for MySQL/Amazon RDS error: "you do not have SUPER...

As defined in AWS documentation triggers, procedures, and functions are disabled by default because binary logging is enabled by default. Disabling basically makes your db more secure, but if you have...

View Article

Answer by arun-r for MySQL/Amazon RDS error: "you do not have SUPER...

Open the RDS web console.Open the “Parameter Groups” tab.Create a new Parameter Group. On the dialog, select the MySQL family compatible to your MySQL database version, give it a name and...

View Article


Answer by anders for MySQL/Amazon RDS error: "you do not have SUPER...

The problem with triggers and stored procedures in the dump file is that these definitions include the user who the stored procedure should be created by, the DEFINER. The user most likely doesn't...

View Article


Answer by Ross Smith II for MySQL/Amazon RDS error: "you do not have SUPER...

Per http://getasysadmin.com/2011/06/amazon-rds-super-privileges/, you need to set log_bin_trust_function_creators to 1 in AWS console, to load your dump file without errors.If you want to ignore these...

View Article

MySQL/Amazon RDS error: "you do not have SUPER privileges..."

I'm attempting to copy my mysql database from an Amazon EC2 to an RDS:I successfully did a mysqldump of my database into my root folder using this:root@ip-xx-xx-xx-xx:~# mysqldump my_database -u...

View Article
Browsing all 11 articles
Browse latest View live




Latest Images