PC-BSD 8.2 i386 に PostgreSQL 9.0.4 をインストールしてみました。
といっても、 How to install PostgreSQL on FreeBSD/PCBSD の通りにやってみただけです。
私の場合は、 /opt/pgsql9.0 以下にインストールしました。
/opt は無いので作りますが、直接ルートディレクトリに作らないで、 /usr/opt を作り、 /opt は /usr/opt へのシンボリックリンクにしています。
$ su - # mkdir /usr/opt # ln -s /usr/opt /opt
これは、PC-BSD インストール時のパーテーションの分け方をデフォルトにしたためか、 / のディスク領域はさほど大きくなく、 /usr が一番大きなディスク領域となっているためです。 /home が /usr/home へのシンボリックリンクになっているのと同じ方式です。
あとは、ブラウザで PostgreSQL のサイトのソースコードのダウンロードページから tar ボールをダウンロードして展開したら、 configure, make, make install します。
ここでは、 /home/user/Downloads にダウンロードしたものとします。
ダウンロードするときに、 .md5 も一緒にダウンロードして、ダウンロードしたファイルが正しい事も確認した方がいいでしょう。
# cd /opt # mv /home/user/Downloads/postgresql-9.0.4.tar.bz2 . # mv /home/user/Downloads/postgresql-9.0.4.tar.bz2.md5 . # cat postgresql-9.0.4.tar.bz2.md5 MD5 (postgresql-9.0.4.tar.bz2) = 80390514d568a7af5ab61db1cda27e29 # md5 postgresql-9.0.4.tar.bz2 MD5 (postgresql-9.0.4.tar.bz2) = 80390514d568a7af5ab61db1cda27e29 # tar xjvf postgresql-9.0.4.tar.bz2 x postgresql-9.0.4/ x postgresql-9.0.4/.gitignore x postgresql-9.0.4/COPYRIGHT ... snip ... x postgresql-9.0.4/config/programs.m4 x postgresql-9.0.4/config/python.m4 x postgresql-9.0.4/config/tcl.m4 # cd postgresql-9.0.4 # ./configure --prefix=/opt/pgsql9.0 checking build system type... i386-unknown-freebsd8.2 checking host system type... i386-unknown-freebsd8.2 checking which template to use... freebsd checking whether to build with 64-bit integer date/time support... yes checking whether NLS is wanted... no checking for default port number... 5432 checking for block size... 8kB checking for segment size... 1GB checking for WAL block size... 8kB checking for WAL segment size... 16MB checking for gcc... gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes ... snip ... config.status: linking src/backend/port/sysv_shmem.c to src/backend/port/pg_shmem.c config.status: linking src/backend/port/dynloader/freebsd.h to src/include/dynloader.h config.status: linking src/include/port/freebsd.h to src/include/pg_config_os.h config.status: linking src/makefiles/Makefile.freebsd to src/Makefile.port # gmake ... snip ... All of PostgreSQL successfully made. Ready to install. # make install Using GNU make found at /usr/local/bin/gmake /usr/local/bin/gmake -C src install ... snip ... PostgreSQL installation complete.
GNU make を使っているため、本来は gmake でビルドとインストールをしないといけないはずですが、間違って make で実行してしまっても、 gmake で実行する仕組みになっているようです。
ここまでで、とりあえず、実行環境を配置できた訳ですが、続いてデータベースのデータの格納場所の準備をします。
PostgreSQL は postgres ユーザー上で操作するため、 postgres ユーザーを作り、データ格納先ディレクトリを作り、データを初期化します。
# adduser Username: postgres Full name: postgres Uid (Leave empty for default): Login group [postgres]: Login group is postgres. Invite postgres into other groups? []: Login class [default]: Shell (sh csh tcsh bash rbash nologin) [sh]: Home directory [/home/postgres]: Home directory permissions (Leave empty for default): Use password-based authentication? [yes]: Use an empty password? (yes/no) [no]: Use a random password? (yes/no) [no]: Enter password: Enter password again: Lock out the account after creation? [no]: Username : postgres Password : ***** Full Name : postgres Uid : 1002 Class : Groups : postgres Home : /home/postgres Home Mode : Shell : /bin/sh Locked : no OK? (yes/no): yes adduser: INFO: Successfully added (postgres) to the user database. Add another user? (yes/no): no Goodbye! # mkdir /opt/pKgsql9.0/data # chown postgresql /opt/pgsql9.0/data $ /opt/pgsql9.0/bin/initdb -D /opt/pgsqlK9.0/data The files belonging to this database system will be owned by user "postgres". This user must also own the server process. The database cluster will be initialized with locale ja_JP.UTF-8. The default database encoding has accordingly been set to UTF8. initdb: could not find suitable text search configuration for locale ja_JP.UTF-8 The default text search configuration will be set to "simple". fixing permissions on existing directory /opt/pgsql9.0/data ... ok creating subdirectories ... ok selecting default max_connections ... 40 selecting default shared_buffers ... 28MB creating configuration files ... ok creating template1 database in /opt/pgsql9.0/data/base/1 ... ok initializing pg_authid ... ok initializing dependencies ... ok creating system views ... ok loading system objects' descriptions ... ok creating conversions ... ok creating dictionaries ... ok setting privileges on built-in objects ... ok creating information schema ... ok loading PL/pgSQL server-side language ... ok vacuuming database template1 ... ok copying template1 to template0 ... ok copying template1 to postgres ... ok WARNING: enabling "trust" authentication for local connections You can change this by editing pg_hba.conf or using the -A option the next time you run initdb. Success. You can now start the database server using: /opt/pgsql9.0/bin/postgres -D /opt/pgsql9.0/data or /opt/pgsql9.0/bin/pg_ctl -D /opt/pgsql9.0/data -l logfile start
これで、PostgreSQL を起動する準備ができました。
initdb コマンドの出力の最後に出ているコマンドで、 PostgreSQL のサーバーが起動します。
ただ、 postgres コマンドより、 pg_ctl コマンドを使う方が良さそうです。
$ /opt/pgsql9.0/bin/pg_ctl -D /opt/pgsql9.0/data -l pgsql.log start server starting $ /opt/pgsql9.0/bin/createdb test $ /opt/pgsql9.0/bin/psql test psql (9.0.4) Type "help" for help. test=# help You are using psql, the command-line interface to PostgreSQL. Type: \copyright for distribution terms \h for help with SQL commands \? for help with psql commands \g or terminate with semicolon to execute query \q to quit test=# \q $ /opt/pgsql9.0/bin/pg_ctl -D /opt/pgsql9.0/data stop waiting for server to shut down.... done server stopped $ $ cat pgsql.log LOG: database system was shut down at 2011-05-10 14:53:36 UTC LOG: database system is ready to accept connections LOG: autovacuum launcher started LOG: received smart shutdown request LOG: autovacuum launcher shutting down LOG: shutting down LOG: database system is shut down $
という感じで、動いているようですね。
ピンバック: Ruby の RDBI で PostgreSQL にアクセスしてみた | ふにょいサイト