一、創(chuàng)建psotgres用戶
專注于為中小企業(yè)提供網(wǎng)站設(shè)計制作、網(wǎng)站設(shè)計服務(wù),電腦端+手機端+微信端的三站合一,更高效的管理,為中小企業(yè)陽谷免費做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動了近1000家企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設(shè)實現(xiàn)規(guī)模擴充和轉(zhuǎn)變。
groupadd postgres
useradd -g postgres postgres
二、創(chuàng)建必須目錄
下載路徑https://www.enterprisedb.com/download-postgresql-binaries
wget https://get.enterprisedb.com/postgresql/postgresql-9.6.4-1-linux-x64-binaries.tar.gz
進入下載目錄
tar -xzf postgresql-9.6.4-1-linux-x64-binaries.tar.gz -C /data/service
創(chuàng)建data目錄:
mkdir -p /data/service/postgresql/data
mkdir -p /data/service/postgresql/log
授權(quán):
chown -R postgres.postgres pgsql (解壓目錄)
chown -R postgres.postgres postgresql
三、初始化
cd /data/service/pgsql/
su postgres
./bin/initdb -E utf8 -D /data/service/postgresql/data
四、啟動
./postgres -D /data/service/postgresql/data/ > /data/service/postgresql/log/postgres.log &
關(guān)閉
./pg_ctl -D /data/service/postgresql/data stop
登錄
./psql -U pg -d mydb
----------------------
遠程連接
1 修改pg_hba.conf文件
host all all 127.0.0.1/32 trust
host all all 192.168.1.0/24 md5
其中,數(shù)字24是子網(wǎng)掩碼,表示允許192.168.1.0--192.168.1.255的計算機訪問!