无法运行PSQL

时间:2013-08-29 00:07:26

标签: postgresql psql

每当我尝试运行'psql'时,都会收到以下错误消息:

ahcarpenter@ubuntu:~$ psql
psql: FATAL:  role "ahcarpenter" does not exist

有关如何解决此问题的任何想法?

1 个答案:

答案 0 :(得分:1)

这是因为

$ psql 

相当于

$ psql ahcarpenter -U ahcarpenter

由于该用户不存在,请以用户postgres

输入
$ psql -U postgres

一旦在里面创建用户和数据库“ahcarpenter”。

create user ahcarpenter;
create database ahcarpenter with owner ahcarpenter;

出口

\q

重新输入

$ psql