Whenever I run the command rvmsudo rake db:migrate (I need to use rvmsudo because I'm using rvm), the sqlite3 files generated are owned by root.

ls -l db/*.sqlite3

Because of this, I keep on getting a SQLite3 Read Only Error whenever I try to do anything to the database, and I have to manually enter the command:

sudo chown -R myusername db/*.sqlite3

rvmsudo rake db:migrate never did this before, and I am wondering why it is happening now.

link|improve this question

why do you need to use sudo? – ErsatzRyan May 31 '11 at 21:41
If I don't I get permission denied – LanguagesNamedAfterCofee May 31 '11 at 21:45
I figured out what was wrong. I was using rvmsudo db:migrate from the start, which set the sqlite3 file's users to root. I am using rake db:migrate now (without the rvmsudo), and it generates the sqlite3 files as my user. – LanguagesNamedAfterCofee May 31 '11 at 23:13
feedback

1 Answer

up vote 2 down vote accepted

Did you install RVM as root, and if so, is there a reason it wasn't installed as your normal (less-privileged) user? I use RVM daily, on a number of machines, and haven't had to install RVM as root.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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