vote up 0 vote down star

I am using mysql 5.1 and mysql gems version is 2.73

This is giving the following error message when I try to run it from a limited account in my XP. If try it using the admin account, it works fine. I think this is wierd because it cannot be the problem of mysql gem.

(in F:/Temp/wassup)
!!! The bundled mysql.rb driver has been removed from Rails 2.2. Please install
the mysql gem and try again: gem install mysql.
rake aborted!
5: Access is denied.   - C:/Program Files/Ruby/lib/ruby/gems/1.8/gems/mysql-2.7.
3-x86-mswin32/ext/mysql.so

(See full trace by running task with --trace)

I need to work from the limited account. Can anyone let me know why is this happening?

flag

53% accept rate
I haven't got the answer to this. But when I reinstalled ruby along with rails, it seemed to work somehow.. – Xinxua Aug 14 at 4:51

2 Answers

vote up 0 vote down

your limited account doesn't have permissions to read C:/Program Files/Ruby/lib/ruby/gems/1.8/gems/mysql-2.7.3-x86-mswin32/ext/mysql.so

just give the limited user read rights on C:/Program Files/Ruby/lib/ruby/gems recursively

link|flag
vote up 0 vote down

It's just complaining that the MySQL driver is no longer included with your version of Rails. It then tries to read from the mysql gem, which has been installed to:

C:/Program Files/Ruby/lib/ruby/gems/1.8/gems/mysql-2.7.3-x86-mswin32/ext/mysql.so

However, you don't have read access to that particular file, or some parent directory up the chain.

You'll have to ask the system administrator to give your account access to those directories.

link|flag

Your Answer

Get an OpenID
or

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