| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

PostgreSQL 8.3.5 インストール

提供: MyMemoWiki
ナビゲーションに移動 検索に移動

PostgreSQL 8.3.5 インストール

PostgreSQL | PostgreSQL 8.3.5 | Fedora Core |

日本PostgreSQLユーザ会 http://www.postgresql.jp/document/pg835doc/html/installation.html

PostgreSQL 8.3.5 を Fedora Core 6 にインストール

インストール

postgresユーザーの作成

http://www.postgresql.jp/document/current/html/postgres-user.html

  • セキュリティ上の理由からサーバプロセスをrootユーザーで起動できない
  • 運用は、rootユーザーではなく専用の一般ユーザーで行う
  • 運用するユーザーをOSに追加
  • 外部へアクセスできる他のサーバデーモンと同じように、PostgreSQLを独立したユーザアカウントで実行することをお勧めします。
  • このユーザアカウントは、サーバによって管理されるデータのみを所有するようにすべき
  1. # useradd postgres
  2. # passwd postgres

postgres ユーザになる

  1. # su postgres

ソースの入手

入手

ftp://ftp.postgresql.org/pub/v8.3.5/postgresql-8.3.5.tar.gz

  1. $ ftp ftp.postgresql.org
  2. :
  3. KERBEROS_V4 rejected as an authentication type
  4. Name (ftp.postgresql.org:root): anonymous
  5. Password:[メールアドレス]
  6. :
  7. ftp> bin
  8. ftp> cd /pub/v8.3.5/
  9. ftp> get postgresql-8.3.5.tar.gz
展開
  1. $ gunzip postgresql-8.3.5.tar.gz
  2. $ tar xvf postgresql-8.3.5.tar

構成

パラメータ http://www.postgresql.jp/document/pg835doc/html/install-procedure.html ちょいと興味があるので、PL/Python とやらも構成しておく

  1. $ cd postgresql-8.3.5
  2. $ ./configure --with-python
  3. :
  4. configure: error: readline library not found

エラーになった。[readline http://typea-mixi01.appspot.com/yh_s?q=readline+library]がないとのこと。

エラー対応

結論から言うと、以下の3つのライブラリのインストールが必要

ライブラリ 内容
readline 文字列入力用ライブラリ。入力プロンプトでタブ補完や入力ヒストリを参照できたり、emacsライクあるいはviライクなキー操作が可能となる
ncurses 端末に依存しない形式でテキストユーザインタフェース(TUI)を作成するためのAPIを提供するライブラリ
zlib Zip や gzip に使われている圧縮アルゴリズムをライブラリ化したもの
readline ライブラリのインストール

とのこと。

  1. # ftp ftp.gnu.org
  2. :
  3. Name (ftp.gnu.org:root): anonymous
  4. ftp> cd /gnu/readline
  5. ftp> get readline-5.2.tar.gz
  1. # gunzip readline-5.2.tar.gz
  2. # tar xvf readline-5.2.tar
  3. # cd readline-5.2
  4. # ./configure
  5. # make
  6. # make install
再度configure

まだエラー。 config.logのfailureを見ろと。ディレクトリが見つからないのではないかと。readlineのサポートをはずすこともできるよとも。

  1. configure: error: readline library not found
  2. If you have readline already installed, see config.log for details on the
  3. failure. It is possible the compiler isn't looking in the proper directory.
  4. Use --without-readline to disable readline support.

config.log

  1. :
  2. dit -lcurses -lcrypt -ldl -lm >&5
  3. /usr/bin/ld: cannot find -ledit
  4. collect2: ld returned 1 exit status
  5. configure:6738: $? = 1
  6. configure: failed program was:
  7. :

Ncurses ライブラリが足りない模様

ncursesのインストール
  1. # ftp ftp.gnu.org
  2. :
  3. Name (ftp.gnu.org:root): anonymous
  4. ftp> cd /gnu/ncureses
  5. ftp> get ncurses-5.7.tar.gz
  1. # cd ncurses-5.7
  2. # ./configure --with-shared --with-normal
  3. # make
  4. # make install
再再度configure

またまたエラー

  1. configure: error: zlib library not found
  2. If you have zlib already installed, see config.log for details on the
  3. failure. It is possible the compiler isn't looking in the proper directory.
  4. Use --without-zlib to disable zlib support.

http://honana.com/library/zlib.html http://www.zlib.net/

  1. # wget -P [ダウンロード先ディレクトリ] http://www.zlib.net/zlib-1.2.3.tar.gz
  1. # gunzip zlib-1.2.3.tar.gz
  2. # tar xvf zlib-1.2.3.tar
  3. # cd zlib-1.2.3
  4. # ./configure
  5. # make
  6. # make install
キャッシュを最新化
  1. # ldconfig
構成 ~ インストール

ルートで、インストールディレクトリ(デフォルト)を作成

  1. # mkdir /usr/local/pgsql
  2. # chown postgres:postgres /usr/local/pgsql
  3. # su postgres
  1. $ cd postgres-8.3.5
  2. $ ./configure --with-python
  3. $ make
  4. $ make install


設定作業

/etc/bashrc の末尾に以下を追記

  1. if [ $?LD_LIBRARY_PATH ]then
  2. LD_LIBRARY_PATH=/usr/local/pgsql/lib:$LD_LIBRARY_PATH
  3. else
  4. LD_LIBRARY_PATH=/usr/local/pgsql/lib
  5. fi
  6. export LD_LIBRARY_PATH
  7. PATH=/usr/local/pgsql/bin:$PATH
  8. export PATH
  9. export PGDATA=/usr/local/pgsql/data

データベースクラスタの作成

http://www.postgresql.jp/document/current/html/creating-cluster.html

データベース格納領域を初期化

  • ディスク上にデータベース格納領域を初期化する必要があります。
  • 格納領域をデータベースクラスタと呼びます(SQLではカタログクラスタという用語が使用されます)。
  • データベースクラスタはデータベースの集合
  • 稼働しているデータベースサーバのただ1つのインスタンスを通して管理
  • ファイルシステムの観点から見ると、データベースクラスタというのは、全てのデータが格納される1つのディレクトリ
  1. $ initdb --encoding=UTF8

上記で、PGDATA環境変数を設定しているため、-D オプションをつけていない。 つける場合、$ initdb -D /usr/local/pgsql/data とする

デフォルトの文字セット

デフォルトの文字セット符号化方式も設定。データベース作成時に上書き可能 http://www.postgresql.jp/document/current/html/multibyte.html

データベースサーバの起動

http://www.postgresql.jp/document/current/html/server-start.html

  • 以下でデータベースサーバを起動できる
  • PGDATA環境変数を指定している場合、-D オプションは不要
  • 他のオプションはこちらを参照
  1. $ postgres -D /usr/local/pgsql/data
  • シェル構文は長くなりがちのため、pg_ctlラッパプログラムが提供されていて、いくつかのタスクを単純化している。

ログの設定

http://www.postgresql.jp/document/current/html/logfile-maintenance.html

PostgreSQLのログ設定

/usr/local/pgsql/data/postgres.conf を編集

以下の設定によりログ出力
  1. log_destination = 'syslog'
  2. syslog_facility = 'LOCAL0'
  3. syslog_ident = 'postgres'
何を出力するか

http://www.postgresql.jp/document/current/html/runtime-config-logging.html#RUNTIME-CONFIG-LOGGING-WHAT

以下あたりを有効にしてみる

パラメータ 内容
log_connections(boolean) クライアント認証の成功終了などのサーバへの接続試行がログに残ります
log_duration(boolean) すべての完了した文について、その経過時間をログする
log_statement (文字列) どのSQL文をログに記録するかを制御します。有効な値は、none、ddl、mod、およびallで

/usr/local/pgsql/data/postgres.conf を編集

  1. log_connections = on
  2. log_duration = on
  3. log_statement = 'all'



syslogの設定

local0 - local7 までが、ローカル使用用に予約されている。 manを確認

  1. man -a syslog
/var/log/postgresにログ出力
  1. # vi /etc/syslog.conf
  1. # PostgreSQL log
  2. local0.* -/var/log/postgres
/var/log/messages への出力を抑制

local0.none を追記

  1. # Log anything (except mail) of level info or higher.
  2. # Don't log private authentication messages!
  3. #2008.11.30
  4. #*.info;mail.none;authpriv.none;cron.none /var/log/messages
  5. *.info;mail.none;authpriv.none;cron.none;local0.none /var/log/messages
syslog 再起動
  1. # /sbin/service syslog restart


データベースの作成

  • データベースを作成する場合、PostgreSQLサーバが起動している必要がある
  • SQLコマンドから、
  • データベースを作成できるが、利便性のため、シェルからcreatedbを実行しても作成できる。
  • 削除はdropdbにて可能
  1. $ createdb testdb

データベースへのアクセス

http://www.postgresql.jp/document/current/html/tutorial-accessdb.html 以下によってアクセス可能

  • psqlというPostgreSQL対話式端末プログラムを実行
  • データベースの作成や操作をサポートするpgAdminやODBCを備えたオフィススイートなどの既存のグラフィカルなフロントエンドツールを使用
  • 複数の使用可能言語の1つを使用した、独自のアプリケーションの作成

psql を試す

  1. $ psql testdb
  2. Welcome to psql 8.3.5, the PostgreSQL interactive terminal.
  3.  
  4. Type: \copyright for distribution terms
  5. \h for help with SQL commands
  6. \? for help with psql commands
  7. \g or terminate with semicolon to execute query
  8. \q to quit

testdb=#となっているのは、スーパーユーザーであるため。スーパーユーザーでない場合、tetdb=>となる。 以下のコマンドを試す

  1. testdb=# SELECT version();
  2. version
  3. ----------------------------------------------------------------------------------------------------
  4. PostgreSQL 8.3.5 on i686-pc-linux-gnu, compiled by GCC gcc (GCC) 4.1.2 20070626 (Red Hat 4.1.2-13)
  5. (1 row)

クライアントからの接続設定