この方法を試してください
sudo -u postgres createuser -D -P your-current-ubuntu-username
および
sudo -u postgres createdb -O your-current-ubuntu-username your-database
このファイルを開く/etc/postgresql/9.1/main/pg_hba.conf
この行のみを変更してください:
local all all peer
これに:
local all all md5
postgresサーバーを再起動することを忘れないでください:
sudo service postgresql restart
このコマンドで確認してください
psql -d your-database -U your-current-ubuntu-username -W
動作するはずです
このソリューションはpostgresql-9.1
で機能します 、インストール方法は次のとおりです
sudo apt-get install postgresql-9.1