Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我运行命令:
rake eol:db:recreate RAILS_ENV=development
这会发生:
耙中止! 权限被拒绝 - /home/u/eol/db/structure.sql
我怎么解决这个问题?
检查您的db目录的权限,您的用户似乎没有它的写权限。
db
确保整个应用程序目录及其子文件夹属于您的用户:
chown -R `whoami` /home/u/eol
并将写入权限添加到所有文件夹:
chmod -R u+w /home/u/eol