免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 11640 | 回复: 2
打印 上一主题 下一主题

django出现这个错误attempt to write a readonly database [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-01-28 11:00 |只看该作者 |倒序浏览
环境django1.1.1,mod_python3.3.0,python2.5.4

django的setting.py
DATABASE_ENGINE = 'sqlite3'           # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
DATABASE_NAME = '/jykj/dts/hou/dts.db'             # Or path to database file if using sqlite3.
DATABASE_USER = ''             # Not used with sqlite3.
DATABASE_PASSWORD = ''         # Not used with sqlite3.
DATABASE_HOST = ''             # Set to empty string for localhost. Not used with sqlite3.
DATABASE_PORT = ''             # Set to empty string for default. Not used with sqlite3.

数据库文件与所在文件夹权限
[root@localhost dts]# ls -l
total 180
drwxrwxr-x 4 root root   4096 Jan 28 10:57 hou
-rw-r--r-- 1 root root 174080 Jan 27 16:21 hou.tar
[root@localhost dts]# ls -l hou/dts.db
-rw-rw-r-- 1 root root 27648 Jan 28 10:32 hou/dts.db
[root@localhost dts]#

apache权限
apache:48:0:Apache:/var/www:/sbin/nologin

django代码
def login(request):
        #userpassword = request.POST.get('userpassword',None)
        cur = connection.cursor()
        a = "select * from dtsadmin"
        b = "update dtsadmin set userpass = '456345' where username = 'admin'"
        cur.execute(b)
        connection._commit()
        cur.execute(a)
        b = cur.fetchall()
        c = str(b)
        connection.close()
        return HttpResponse(c)

在执行cur.execute(b)时出现OperationalError:attempt to write a readonly database

当我将数据库文件以及文件夹权限改为777时,程序可以运行
当我将apache用户设置为可登陆,使用apache登陆进去执行普通的update语句也可以执行


感觉还是权限的问题,但是不知道该设置哪里的权限了,大家帮忙看看

论坛徽章:
0
2 [报告]
发表于 2010-01-28 11:31 |只看该作者

  1. chown apache:apache /jykj/dts/hou/dts.db
复制代码

论坛徽章:
0
3 [报告]
发表于 2010-01-28 13:34 |只看该作者

回复 #2 feillex 的帖子

忘了设置所有权了....把数据库文件与所在的文件夹的所有权给了apache后,可以执行了....
但是还是不理解原因~~~~
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP