vote up 1 vote down star
1

not sure if this is a question better suited for serverfault but I've been messing with amazon RDS lately and was having trouble getting 'file' privileges to my web host mysql user.

I'd assume that a simple:

grant file on *.* to 'webuser@'%';

would work but it does not and I can't seem to do it with my 'root' user as well. What gives? The reason we use load data is because it is super super fast for doing thousands of inserts at once.

anyone know how to remedy this or do I need to find a different way?

This page, http://docs.amazonwebservices.com/AmazonRDS/latest/DeveloperGuide/index.html?Concepts.DBInstance.html seems to suggest that I need to find a different way around this.

Help?

UPDATE I'm not trying to import a database -- I just want to use the file load option to insert several hundred-thousand rows at a time.

after digging around this is what we have:

 mysql> grant file on *.* to 'devuser'@'%';
 ERROR 1045 (28000): Access denied for user 'root'@'%' (using password: YES)


 mysql> select User, File_priv, Grant_priv, Super_priv from mysql.user;
 +----------+-----------+------------+------------+
 | User     | File_priv | Grant_priv | Super_priv |
 +----------+-----------+------------+------------+
 | rdsadmin | Y         | Y          | Y          |
 | root     | N         | Y          | N          |
 | devuser  | N         | N          | N          |
 +----------+-----------+------------+------------+
flag

64% accept rate

2 Answers

vote up 1 vote down check

You can grant yourself FILE (and SUPER) privileges, just not with the GRANT command.

Instead, use a desktop application like MySQL Administrator or Querious.

In MySQL Administrator I was able to go to the user management section and assign myself SUPER privileges so I could create a TRIGGER. (Note that in order to do this you must first go into the MySQL Administrator Preferences (Mac) or Options (Windows) and turn on global privilege settings.)

link|flag
1  
awesome job Nate -- I haven't used mysql administrator forever -- just to note to other users -- you'll need to enable 'global privilege editor' in tools/privileges and then you can assign yourself file and grant -- the real question is why I couldn't do this from the command line? – feydr Oct 29 at 16:53
Good point. I must have enabled global privilege editing at some point in the past. – Nate Oct 29 at 17:06
I’ve updated the answer. – Nate Oct 29 at 17:09
vote up 1 vote down

Pretty sure you can't do it yet, as you don't have the highest level MySQL privileges with RDS. We've only done a little testing, but the easiest way to import a database seems to be to pipe it from the source box, e.g.

mysqldump MYDB | mysql -h rds-amazon-blah.com --user=youruser --pass=thepass
link|flag
yeh... but I'm just trying to load a couple hundred to a couple thousand statements at once -- not really load a db – feydr Oct 29 at 15:06
I'd run them with a prepared statement then - it won't take long :) – David Caunt Oct 29 at 15:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.