前提・実現したいこと
PostgreSQLの導入で困っております。
現在、PostgreSQLをインストールしデータベースの起動まで行いました。そしてデータベースの作成を行おうとcreate flasknoteを打ち込んだところ以下のエラーメッセージが発生しました。
また、ユーザーを作成してからデータベースを作成しようと$ createuser -s -P postgresと打ち込んだ際も同様のエラーメッセージが表示されます。
データベース初心者の為このような初歩的な質問をしてしまい大変恐縮ですが、ご回答の程よろしくお願いします。
発生している問題・エラーメッセージ
createuser: could not connect to database postgres: FATAL: password authentication failed for user "arataniryosuke"
該当のソースコード
PostgreSQL
1 2(flask2) bash-3.2$ createdb flasknote 3Password: 4Password: 5createdb: could not connect to database template1: FATAL: password authentication failed for user "arataniryosuke" 6(flask2) bash-3.2$ createuser -s -P postgres 7Enter password for new role: 8Enter it again: 9Password: 10Password: 11createuser: could not connect to database postgres: FATAL: password authentication failed for user "arataniryosuke" 12
コマンドに準個人情報的なものが含まれていますが問題ないものでしょうか