Powered By Blogger

2013年5月9日木曜日

PostgreSQLインストール

CentOS6.3に対してインストールを行います。 事前にデフォルトでインストールされているPostgreSQLは削除しておいてください。

リポジトリの追加とインストール

rpm -ivh http://yum.postgresql.org/9.2/redhat/rhel-6-x86_64/pgdg-centos92-9.2-6.noarch.rpm

yum install --enablerepo=pgdg92 postgresql92*

初期化

service postgresql-9.2 initdb

起動

service postgresql-9.2 start

自動起動と確認

chkconfig postgresql-9.2 on

chkconfig --list | grep postgresql-9.2

postgresユーザのパスワード設定

passwd postgres

データベースユーザの作成、データベースの作成

su - postgres

createuser -a -d -U postgres -P ユーザ名

createdb -E UTF-8 -O オーナー -U postgres データベース名

0 件のコメント: