postgres ユーザのパスワード設定
# postgres ユーザのパスワードを設定 $ passwd postgres # postgres ユーザに su して(これ以降は、基本的に postgres ユーザで作業) $ su - postgres # PostgreSQL 側のパスワードを一致させる $ psql template1 template1 =# alter user postgres with password '12345'; template1 =# \q
rails 用ユーザの作成
$ psql postgres =# create role rails_user with login password '98765'; postgres =# \q
pg_hba.conf の編集
# root に戻る $ exit # pg_hba.conf を編集 $ vi /etc/postgresql/8.4/main/pg_hba.conf- local all all ident + local all all password
日本語設定
$ vi /etc/postgresql/8.4/main/postgresql.conf# These settings are initialized by initdb, but they can be changed. - lc_messages = 'en_US.UTF-8' # locale for system error message - lc_monetary = 'en_US.UTF-8' # locale for monetary formatting - lc_numeric = 'en_US.UTF-8' # locale for number formatting - lc_time = 'ja_JP.UTF-8' # locale for time formatting + lc_messages = 'ja_JP.UTF-8' # locale for system error message + lc_monetary = 'ja_JP.UTF-8' # locale for monetary formatting + lc_numeric = 'ja_JP.UTF-8' # locale for number formatting + lc_time = 'ja_JP.UTF-8' # locale for time formatting # default configuration for text search - default_text_search_config = 'pg_catalog.english' + default_text_search_config = 'pg_catalog.japanese'
サービス再起動
$ service postgresql-8.4 restart
さくら VPS (Ubuntu Server 10.04)設定エントリ一覧
- tail -f pinzo.log: さくらのVPS 2G に Ubuntu Server 10.04 をインストール
- tail -f pinzo.log: Ubuntu Server 10.04 に SSH を設定する
- tail -f pinzo.log: Ubuntu Server 10.04 の ssh ポートを変更する
- tail -f pinzo.log: お名前.comの独自ドメインをさくらVPSに割り当てる
- tail -f pinzo.log: Ubuntu Server 10.04 に iptables の設定を行う
- tail -f pinzo.log: Google Apps (+α) 導入時にやったこと
- tail -f pinzo.log: さくら VPS の Ubuntu Server 10.04 に色々導入 vol.1
- tail -f pinzo.log: さくら VPS の Ubuntu Server 10.04 に Ruby をインストール
0 件のコメント :
コメントを投稿