微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

sqlite3.OperationalError: database is locked

情景描述

windows上代码文件,设置为共享目录,mount到linux使用。运行python manage.py migrate,出现错误

报错

[root@localhost sqlalchemy]# python manage.py db migrate
/root/py_env/coacs/lib/python3.6/site-packages/flask_sqlalchemy/__init__.py:794: FSADeprecationWarning: sqlALCHEMY_TRACK_MODIFICATIONS adds significant overhead and will be disabled by default in the future.  Set it to True or False to suppress this warning.
  'sqlALCHEMY_TRACK_MODIFICATIONS adds significant overhead and '
INFO  [alembic.runtime.migration] Context impl sqliteImpl.
INFO  [alembic.runtime.migration] Will assume non-transactional DDL.
Traceback (most recent call last):
  File "/root/py_env/coacs/lib/python3.6/site-packages/sqlalchemy/engine/base.py",line 1193,in _execute_context
    context)
  File "/root/py_env/coacs/lib/python3.6/site-packages/sqlalchemy/engine/default.py",line 508,in do_execute
    cursor.execute(statement,parameters)
sqlite3.OperationalError: database is locked

原因

sqlite3与smb的lock冲突

解决

mount -t cifs //192.168.1.121/coacs /opt/coacs -o username=username,password=password,nobrl
nobrl 表示不向服务器发送对 byte range lock 的请求。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐