Postgresql nie tworzy db z „createdb” jako superużytkownikiem, ale nie wyświetla błędów

Pracuję ze świeżą instalacją postgresql, z super użytkownikiem „postgres”. Zalogowano przez:

sudo -u postgres psql


postgres=# createdb database
postgres-# \list
                                  List of databases
   Name    |  Owner   | Encoding |  Collation  |    Ctype    |   Access privileges   
-----------+----------+----------+-------------+-------------+-----------------------
 postgres  | postgres | UTF8     | en_GB.UTF-8 | en_GB.UTF-8 | 
 template0 | postgres | UTF8     | en_GB.UTF-8 | en_GB.UTF-8 | =c/postgres
                                                             : postgres=CTc/postgres
 template1 | postgres | UTF8     | en_GB.UTF-8 | en_GB.UTF-8 | =c/postgres
                                                             : postgres=CTc/postgres

Brak błędów, ale tabela nie jest tworzona. Jakieś pomysły?

questionAnswers(3)

yourAnswerToTheQuestion