標籤:dir postgre ini conf amp 遠程 tools evel tar
tar xf postgresql-9.4.5.tar.gz
cd postgresql-9.4.5
yum grouplist
yum grouplist|grep Deve
yum groupinstall Development tools
./configure --prefix=/test/postgresql9.4.5 --without-readline --without-zlib
make && make install
mkdir /test/postgresql9.4.5/data
adduser postgres
chown postgres:postgres /test/postgresql9.4.5/data/
su - postgres
/test/postgresql9.4.5/bin/initdb -D /test/postgresql9.4.5/data/ #初始化資料庫
/test/postgresql9.4.5/bin/pg_ctl -D /test/postgresql9.4.5/data/ -m start #啟動資料庫
/test/postgresql9.4.5/bin/pg_ctl -D /test/postgresql9.4.5/data/ -m stop #停止資料庫
###################
如果想要遠端存取則修改設定檔pg_hba.conf
# "local" is for Unix domain socket connections only
local all all trust
# IPv4 local connections:
host all all 0.0.0.0/0 trust
host all all 0.0.0.0/24 md5
# IPv6 local connections:
host all all ::1/128 trust
還有postgresql.conf
listen_addresses = ‘*‘
postgresql 安裝文檔