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.
我正在构建一个 django 应用程序,并且还使用 dex 进行令牌身份验证。此应用程序部署在 AWS EC2 上,但是当我运行 dex 文件时出现错误。
我使用 sqlite3 作为 dex 的数据库。
这是我的 dex 文件
这是错误
任何帮助都意义重大。谢谢
我得到了同样的错误,在谷歌搜索时我找到了你的问题。在 chmod 我的 sqlite 数据库所在的目录之后,我成功运行了 dex。
SQLite 文档告诉您,如果您希望应用程序在数据库中执行 RW,则应允许您的应用程序在目录中写入。
所以 chmod -R 660 data 是答案。
Y。