sqlite3 数据库被锁定

发布于 2024-09-30 04:42:30 字数 292 浏览 5 评论 0原文

我在Ubuntu10上。 创建新的数据库文件

touch development.db

使用“想要我的迁移

rake db:migrate

但被锁定”错误

SQLite3::BusyException: database is locked

如何锁定?!


更新可以通过samba锁定。这是共享文件夹

I am on Ubuntu10.
Create new db file with

touch development.db

Want my migrations

rake db:migrate

but get locked error

SQLite3::BusyException: database is locked

How it can be locked?!


update it can be locked by samba. it's shared folder

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

一身仙ぐ女味 2024-10-07 04:42:30

我自己也遇到过这个问题。我发现避免对这样的文件进行锁定的唯一方法是将 nobrl 选项添加到您的挂载中。 /etc/fstab 中的条目可能如下所示:

//<SERVERNAME>/<REMOTEPATH> /<LOCALMOUNTPOINT>/<LOCALPATH> cifs credentials=/home/<LOCALUSERNAME>/.smbcredentials,iocharset=utf8,uid=1000,gid=1000,file_mode=0775,dir_mode=0775,nobrl 0 0

这大致遵循位于以下位置的 ubuntu wiki 页面:https://wiki.ubuntu.com/MountWindowsSharesPermanently

I have run into this problem myself. I have found that the only way to avoid the lock being placed on a file like this is to add the nobrl option to your mount. The entry in your /etc/fstab might look something like this:

//<SERVERNAME>/<REMOTEPATH> /<LOCALMOUNTPOINT>/<LOCALPATH> cifs credentials=/home/<LOCALUSERNAME>/.smbcredentials,iocharset=utf8,uid=1000,gid=1000,file_mode=0775,dir_mode=0775,nobrl 0 0

This is loosely following the ubuntu wiki page found at: https://wiki.ubuntu.com/MountWindowsSharesPermanently

剪不断理还乱 2024-10-07 04:42:30

您应该尝试 rake db:create 而不是 touch。这总是对我有用。也许迁移本身有问题?

You should try rake db:create instead of touch. This always works for me. Maybe there's a problem with the migrations itself?

℡寂寞咖啡 2024-10-07 04:42:30

我认为它是被samba锁定的。

我将development.db放在其他非共享文件夹中,一切都按预期进行

i think it was locked by samba.

i put development.db in other non-shared folder and everything works as expected

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文