0

我正在使用 Linux Mint 17。我使用 apt-get 安装了 postgres。我有 postgres 用户帐户,我不必创建它。然后我以 postgres 身份登录并按照以下步骤操作:

$ initdb -D /usr/local/pgsql/data
...
Success.
 You can now start the database server of the Postgres-XC coordinator using:

    postgres --coordinator -D /usr/local/pgsql/data
or
    pg_ctl start -D /usr/local/pgsql/data -Z coordinator -l logfile

 You can now start the database server of the Postgres-XC datanode using:

    postgres --datanode -D /usr/local/pgsql/data
or 
    pg_ctl start -D /usr/local/pgsql/data -Z datanode -l logfile

然后我发出了这两个命令:

$ pg_ctl start -D /usr/local/pgsql/data -Z coordinator -l logfile
$ pg_ctl start -D /usr/local/pgsql/data -Z datanode -l logfile

我没有得到任何回应。

然后我尝试了 createdb 和 createuser 但我不能。她你可以看到一些信息,我希望它有帮助。

darko@darko-Lenovo-G570 ~ $ ps aux | grep postgres
postgre+  1332  0.0  0.3  53304  6800 ?        S    07:59   0:00 /usr/bin/postgres --datanode -D /var/lib/postgres-xc/DN1
postgre+  1363  0.0  0.3  53304  6808 ?        S    07:59   0:00 /usr/bin/postgres --datanode -D /var/lib/postgres-xc/DN2
postgre+  1372  0.0  0.0  53304  1224 ?        Ss   07:59   0:00 postgres: checkpointer process                          
postgre+  1373  0.0  0.0  53304  1456 ?        Ss   07:59   0:00 postgres: writer process                                
postgre+  1374  0.0  0.0  53304  1224 ?        Ss   07:59   0:00 postgres: wal writer process                            
postgre+  1375  0.0  0.1  53724  2220 ?        Ss   07:59   0:00 postgres: autovacuum launcher process                   
postgre+  1376  0.0  0.0  23256  1256 ?        Ss   07:59   0:00 postgres: stats collector process                       
postgre+  1419  0.0  0.0  53304  1232 ?        Ss   07:59   0:00 postgres: checkpointer process                          
postgre+  1420  0.0  0.0  53304  1464 ?        Ss   07:59   0:00 postgres: writer process                                
postgre+  1421  0.0  0.0  53304  1232 ?        Ss   07:59   0:00 postgres: wal writer process                            
postgre+  1423  0.0  0.1  53724  2228 ?        Ss   07:59   0:00 postgres: autovacuum launcher process                   
postgre+  1424  0.0  0.0  23256  1264 ?        Ss   07:59   0:00 postgres: stats collector process                       
postgre+  1440  0.0  0.3  53304  6856 ?        S    07:59   0:00 /usr/bin/postgres --coordinator -D /var/lib/postgres-xc/CN
postgre+  1451  0.0  0.0  53304  1224 ?        Ss   07:59   0:00 postgres: pooler process                                  
postgre+  1453  0.0  0.0  53304  1712 ?        Ss   07:59   0:00 postgres: checkpointer process                            
postgre+  1454  0.0  0.0  53304  1464 ?        Ss   07:59   0:00 postgres: writer process                                  
postgre+  1455  0.0  0.0  53304  1456 ?        Ss   07:59   0:00 postgres: wal writer process                              
postgre+  1456  0.0  0.5  63548 11736 ?        Ss   07:59   0:00 postgres: autovacuum launcher process                     
postgre+  1457  0.0  0.0  23256  1264 ?        Ss   07:59   0:00 postgres: stats collector process                         
postgre+  1481  0.0  0.1  16412  2716 ?        S    07:59   0:00 /usr/bin/gtm -D /var/lib/postgres-xc/GTM -l /var/log/postgres-xc/datanode.log
darko     8426  0.0  0.0   5908   856 pts/0    S+   18:34   0:00 grep --colour=auto postgres
darko@darko-Lenovo-G570 ~ $ sudo -u postgres -i
[sudo] password for darko: 
postgres@darko-Lenovo-G570 ~ $ createuser darko
createuser: could not connect to database postgres: FATAL:  role "postgres" does not exist
4

1 回答 1

0

我对角色、数据库和特权感到困惑,所以我决定删除 postgresql 并重新安装它。实际上,我认为我一开始没有正确安装它,因为第一次安装是 $ sudo apt-get install postgresql 并且没有什么对我有用,正如我在问题中描述的那样。所以我决定杀死所有 postgres 进程: $ sudo pkill postgres remove postgresql $ sudo apt-get remove postgresql 并按照手册 postgresql-9.6-A4.pdf 中的描述构建 postgresql 表单源(您可以从互联网下载)。这本手册很棒,您可以在那里找到所有内容。可能我的某些命令不是 100% 正确的,因为自从我解决了我的问题后已经过去了几天。

于 2017-01-24T16:51:08.520 回答