同じ答えを探しているときにあなたの質問に出くわしました。 @prasad.suraseからの指示に従おうとしました。私が見つけた問題は、ppaリポジトリが12.04LTSで間もなく減価することです。代わりに私はこのリンクを見つけました、そしてそれは本当に役に立ちました。
Ubuntu12.04でのRails開発用のPostgreSQLセットアップ>
-
パッケージマネージャーを介してpostgresqlおよび管理ツールをインストールします
sudo apt-get install postgresql libpq-dev phppgadmin pgadmin3
-
postgresユーザーとしてpostgresqlプロンプトにログインします
sudo su postgres -c psql
-
プロジェクトのpostgresqlユーザーを作成します
create user username with password 'password';
-
Ubuntuユーザーと同じ名前とパスワードでpostgresユーザーを設定し、postgresスーパーユーザーにします
alter user username superuser;
-
開発データベースとテストデータベースを作成する
create database projectname_development; create database projectname_test;
-
データベース上のユーザーに権限を付与する
grant all privileges on database projectname_development to username; grant all privileges on database projectname_test to username;
postgresqlセッションを終了するには、\q
と入力します
ユーザーのパスワードを更新する
alter user username with password ‘new password’;