EnterpriseDB(PostgreSQL Plus)のメモ -- 環境周り
PostgreSQL Plusの環境周りについて、通常のPostgreSQLと若干環境が違うので・・・のメモ
.bashrc の設定 [shell]
vi .bashrc
PATH="$PATH":/opt/PostgresPlus/8.4SS/bin/ [/shell]
外部接続の設定 [shell]
vi /opt/PostgresPlus/8.4SS/data/postgresql.conf
他ホストからの接続を許可する listen_addresses = '*' [/shell]
外部接続設定 [shell]
vi /opt/PostgresPlus/8.4SS/data/pg_hba.conf
すべてのクライアントからの接続を許可するが、パスワードが必要IPv4 local connections:
host all all 127.0.0.1/32 md5
host all all 0.0.0.0/0 md5 [/shell]
postgresqlの再起動 [shell]
/etc/init.d/postgresql-8.4 restart
[/shell]
アンインストーラーの場所 [shell]
pwd
/opt/PostgresPlus/8.4SSll
-rwx------ 1 root root 3554060 5月 24 21:39 uninstall-pgmemcache -rwx------ 1 root root 3651816 5月 24 21:39 uninstall-postgresplus -rwx------ 1 root daemon 3617934 5月 24 21:38 uninstall-postgresql [/shell]