在整个系统中锁定sqlite

时间:2013-05-09 13:44:04

标签: linux sqlite debian nfs

我的系统出了大问题。一些如何,整个sqlite系统被锁定。我不是在谈论单个数据库,我在谈论系统中的每个数据库。

ladb08@newcastle:~$ touch new.sqlite3
ladb08@newcastle:~$ sqlite3 new.sqlite3 
SQLite version 3.7.3
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> .tables
Error: database is locked
sqlite> 

即使是firefox由于同样的问题也无法正常打开。 我不知道为什么会这样。 这个服务器是一个debian服务器,我的团队使用它来开发一些带有rails的站点。我们将这些东西集中在外部git仓库中,这样每个人都可以与他自己的用户一起工作,并使用自己的副本。

另一项测试:

ladb08@newcastle:~/agendador/db$ lsof test.sqlite3 
ladb08@newcastle:~/agendador/db$ fuser test.sqlite3 
ladb08@newcastle:~/agendador/db$ strace -e fcntl sqlite3 test.sqlite3 .tables
fcntl(3, F_GETFD) = 0
fcntl(3, F_SETFD, FD_CLOEXEC) = 0
fcntl(4, F_GETFD) = 0x1 (flags FD_CLOEXEC)
fcntl(3, F_SETLK, {type=F_RDLCK, whence=SEEK_SET, start=1073741824, len=1}) = -1 ENOLCK (No locks available)
Error: database is locked

没有人在使用数据库。清空新的也是如此。

=============================================== ============================

更多信息:

root@newcastle:~# cd /home/ladb08/agendador/db/            
root@newcastle:/home/ladb08/agendador/db# sqlite3 test.sqlite3
SQLite version 3.7.3
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> .tables
Error: database is locked
sqlite> .exit

问题,像往常一样。

root@newcastle:~# cd /root           
root@newcastle:~# cp /home/ladb08/agendador/db/test.sqlite3 ./
root@newcastle:~# sqlite3 test.sqlite3
SQLite version 3.7.3
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> .tables
agendamentos              prefeituras               tipo_atendimentos      
bloqueios                 profissionais             tipo_situacoes         
cidadaos                  schema_migrations         tmibges                
escalas                   tcbos                     tufibges               
orgaos                    tconselhos             
orgaos_tipo_atendimentos  tipo_acoes             

在nfs分区之外,同一文件没问题。

root@newcastle:~# mount
(...)
rootfs on / type rootfs (rw)
urquell.home2:/home2/home-newcastle on /home type nfs (rw,v3,addr=10.17.116.3)
fusectl on /sys/fs/fuse/connections type fusectl (rw)

1 个答案:

答案 0 :(得分:1)

当内核耗尽内存(在您的情况下不太可能)或通过NFS等远程文件系统的锁定操作失败时,将返回错误代码ENOLCK

显然,您的文件服务器配置为不支持文件锁定 (这是否是个好主意is debatable。)