时间:2021-07-01 10:21:17 帮助过:239人阅读
create user <...> with password <...>;
2)创建数据库并指定所属用户
create database django_test owner <...>;
3)Django数据库配置
注:python环境中需安装psycopg2-binary:pip install psycopg2-binary
DATABASES = {
‘default‘: {
‘ENGINE‘: ‘django.db.backends.postgresql_psycopg2‘,
‘USER‘: ‘...‘,
‘PASSWORD‘: ‘...‘,
‘HOST‘: ‘...ip‘,
‘PORT‘: ‘...‘,
‘NAME‘: ‘...‘
}
}
4)修改postgresql配置文件,指定允许远程连接
# vi /etc/postgresql/10/main/postgresql.conf
listen_addresses = ‘*‘ # 运行远程连接
5)重启postgresql服务
systemctl restart postgresql
6)允许任意用户从任意机器上以密码方式访问数据库
# vi /etc/postgresql/10/main/pg_hba.conf
host all all 0.0.0.0/0 md5
7)重启postgresql服务
Django使用postgresql数据库
标签:etc ack 配置文件 postgresq port 方式 bsp postgres size