PostgreSQL 7.1.2 インストール | HTTPD Installation |
Last modified : 2001/06/29 |
ツール名 | バージョン | Ver確認方法 | 備考 |
---|---|---|---|
GNU make | gmake3.77 | gmake -v | |
GNU Cコンパイラ | gcc2.7.2以上 | gcc -v | Ver2.8.xは、上手くいきません。2.7.2又は、2.9.xを使用してください |
* | FreeBSD Ver2.xの場合は、System V のshared memory(共有メモリ)機能を利用できるように設定する必要があります。 使用中のカーネルコンフィグレーションファイル(例:/usr/src/sys/i386/conf/GENERIC)をチェックし、以下のキーワードが 無い場合は追加してカーネルを再構築して下さい。 |
* | デフォルトで設定される同時接続数は、16になります。これを増やす場合は、カーネル再構築をする必要があります |
# adduser editor # mkdir /usr/local/pgsql ← インストールディレクトリ # chown editor.editor /usr/local/pgsql # mkdir /usr/local/src ← ソース展開用ディレクトリ # chown editor.editor /usr/local/src |
# ldconfig /etc/ld.so.conf |
PostgreSQL mailing list in Japan | ftp://ftp.sra.co.jp/pub/cmd/postgres/ |
本家ftpサイト | ftp://ftp.postgresql.org/pub/ |
ダウンロードサイト | ftp://ftp.sra.co.jp/pub/cmd/postgres/ |
ダウンロード日付 | 2001/06/29 |
ファイル名 | postgresql-7.1.2.tar.gz |
ファイルサイズ | 8,117,016 |
MD5 | 8e2e4319828a8a38492c3ce06726237c |
$ cd /usr/local/src $ tar zxvf postgresql-7.1.2.tar.gz |
$ cd /usr/local/src/postgresql-7.1.2 $ ./configure --enable-multibyte=EUC_JP |
$ cd /usr/local/src/postgresql-7.1.2 $ gmake all(Ver6.4.2まではmakeで可能) |
$ gmake check |
$ gmake install |
|
PATH="$PATH":/usr/local/pgsql/bin PG=/usr/local/pgsql export PGLIB=$PG/lib export PGDATA=$PG/data export MANPATH="$MANPATH":$PG/man export LD_LIBRARY_PATH="$LD_LIBRARY_PATH":"$PGLIB" |
参考)シェル変更は、コマンド「chsh」
$ initdb --pgdata /usr/local/pgsql/data |
$ /usr/local/pgsql/bin/postmaster & |
# # PostgreSQL configuration file # ----------------------------- # # This file consists of lines of the form # # name = value # # (The `=' is optional.) White space is collapsed, comments are # introduced by `#' anywhere on a line. The complete list of option # names and allowed values can be found in the PostgreSQL # documentation. Examples are: #log_connections = on #fsync = off #max_connections = 64 # Any option can also be given as a command line switch to the # postmaster, e.g., 'postmaster -c log_connections=on'. Some options # can be set at run-time with the 'SET' SQL command. #======================================================================== # # Connection Parameters # tcpip_socket = on ← "postmaster -i" に相当 #ssl = false #max_connections = 32 # 1-1024 #port = 5432 #hostname_lookup = false #show_source_port = false #unix_socket_directory = '' #unix_socket_group = '' #unix_socket_permissions = 0777 #virtual_host = '' #krb_server_keyfile = '' # # Performance # #sort_mem = 512 #shared_buffers = 2*max_connections # min 16 #fsync = true # # Optimizer Parameters # #enable_seqscan = true #enable_indexscan = true #enable_tidscan = true #enable_sort = true #enable_nestloop = true #enable_mergejoin = true #enable_hashjoin = true #ksqo = false #geqo = true #effective_cache_size = 1000 # default in 8k pages #random_page_cost = 4 #cpu_tuple_cost = 0.01 #cpu_index_tuple_cost = 0.001 #cpu_operator_cost = 0.0025 #geqo_selection_bias = 2.0 # range 1.5-2.0 # # GEQO Optimizer Parameters # #geqo_threshold = 11 #geqo_pool_size = 0 #default based in tables, range 128-1024 #geqo_effort = 1 #geqo_generations = 0 #geqo_random_seed = -1 # auto-compute seed # # Inheritance # #sql_inheritance = true # # Deadlock # #deadlock_timeout = 1000 # # Expression Depth Limitation # #max_expr_depth = 10000 # min 10 # # Write-ahead log (WAL) # #wal_buffers = 8 # min 4 #wal_files = 0 # range 0-64 #wal_sync_method = fsync # fsync or fdatasync or open_sync or open_datasync # Note: default wal_sync_method varies across platforms #wal_debug = 0 # range 0-16 #commit_delay = 0 # range 0-100000 #commit_siblings = 5 # range 1-1000 #checkpoint_segments = 3 # in logfile segments (16MB each), min 1 #checkpoint_timeout = 300 # in seconds, range 30-3600 # # Debug display # silent_mode = on ← "postmaster -S" に相当 #log_connections = false #log_timestamp = false #log_pid = false #debug_level = 0 # range 0-16 #debug_print_query = false #debug_print_parse = false #debug_print_rewritten = false #debug_print_plan = false #debug_pretty_print = false #ifdef USE_ASSERT_CHECKING #debug_assertions = true #endif # # Syslog # #ifdef ENABLE_SYSLOG #syslog = 0 # range 0-2 #syslog_facility = 'LOCAL0' #syslog_ident = 'postgres' #endif # # Statistics # #show_parser_stats = false #show_planner_stats = false #show_executor_stats = false #show_query_stats = false #ifdef BTREE_BUILD_STATS #show_btree_build_stats = false #endif # # Lock Tracing # #trace_notify = false #ifdef LOCK_DEBUG #trace_locks = false #trace_userlocks = false #trace_spinlocks = false #debug_deadlocks = false #trace_lock_oidmin = 16384 #trace_lock_table = 0 #endif |
* | FreeBSD3.2では、マシンの起動時には「start」。またシャットダウン時には「stop」を引数として、 /usr/local/etc/rc.d/下のスクリプトを実行します。この特性を生かしてスクリプトを作成します。 |
#!/bin/sh ldconfig -m /usr/local/pgsql/lib <--- perlスクリプトでエラーがでる場合に有効 PGCTL=/usr/local/pgsql/bin/pg_ctl DBDIR=/usr/local/pgsql/data case "$1" in start) if [ -f $PGCTL ]; then su editor -c "$PGCTL -D $DBDIR start" echo -n ' PostgreSQL' fi ;; stop) su editor -c "$PGCTL -D $DBDIR stop" ;; *) echo "Usage: `basename $0` {start|stop}" >&2 exit 64 ;; esac exit 0 |
# chmod +x pgsql.sh # ./pgsql.sh |
「PostgreSQL完全攻略ガイド」」(初版) | Postgres入門書、必需品です。 2001/07/23現在 改定第3版 が発売されています。 |
PostgreSQL 7.1について | 上記筆者サイトの7.1インストールガイド(PostgreSQL mailing list in Japan) |
PostgreSQL7.1日本語マニュアル | 上記筆者サイトよりSRA(software Research Associates, Inc.) |
PostgreSQL 7.1 ドキュメント(日本語版 0.5) | 上記をダウンロードしたもの(HISOAP) |
PostgreSQLしてみよう(ITNAVI.com) | JDBC、Access接続の設定方法 |