私はこのタイプのデータベースを初めて使用し、psql を指定してコマンド ラインから接続し、パスワードを空白として入力しようとしました。上記のエラーが発生します(この質問のタイトルにあります)。
デフォルトのパスワードがわかりません。
pg_hba ファイル:
IPv4 local connections:
host all all 127.0.0.1/32 trust
# IPv6 local connections:
host all all ::1/128 trust
# Allow replication connections from localhost, by a user with the
# replication privilege.
host replication DIMA 127.0.0.1/32 trust
host replication DIMA ::1/128 trust
postgresql.config
listen_addresses = '*' # what IP address(es) to listen on;
# comma-separated list of addresses;
# defaults to 'localhost', '*' = all
# (change requires restart)
port = 5432 # (change requires restart)
この方法でサーバーを再起動します。
C:\metasploit\postgresql\bin\pg_ctl -D "C:\metasploit\postgresql\myData" -l logfile start
私が望むのは、データベースに入ってパスワードを変更することだけです。そして、できれば PgAdmin-III (GUI 形式) に入ります。