1

我的系统出了大问题。不知何故,整个 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)
4

1 回答 1

1

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

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

于 2013-05-10T08:29:24.380 回答