- 论坛徽章:
- 0
|
环境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语句也可以执行
感觉还是权限的问题,但是不知道该设置哪里的权限了,大家帮忙看看 |
|