PostgreSql:createdb -U postgres mydb 错误:createdb: could not connect to database postgres: FATAL: P

前端之家收集整理的这篇文章主要介绍了PostgreSql:createdb -U postgres mydb 错误:createdb: could not connect to database postgres: FATAL: P前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

操作系统: Ubuntu

运行下面的命令创建名为mydb的数据库

createdb mydb 

得到一个错误:psql: FATAL: role "terry" does not exist, terry是我的机器名, 在postgresql数据库中没有名为terry的role, 所以会报出这个错误, 只要加上-U参数来指定一个存在的role就可以了,所以我将上面的命令改为:

createdb mydb -U postgres

又得到一个错误:psql: FATAL: Peer authentication Failed for user "postgres",解决办法如下:

1. 运行下面的命令编辑pg_hba.conf文件

sudo gedit /etc/postgresql/9.1/main/pg_hba.conf

2. 将

# Database administrative login by Unix domain socket
local   all             postgres                                peer

改为

# Database administrative login by Unix domain socket
local   all             postgres                                trust

3. 保存后执行下面的命令重新加载配置文件:

sudo /etc/init.d/postgresql reload

再执行 createdb mydb1 -U postgres , 已经成功的创建了mydb1数据库.

原文链接:https://www.f2er.com/postgresql/195571.html

猜你在找的Postgre SQL相关文章