真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

centos6.8安裝postgresql9.6.9實(shí)戰(zhàn)-創(chuàng)新互聯(lián)

centos 6.8安裝postgresql9.6.9實(shí)戰(zhàn)

成都創(chuàng)新互聯(lián)公司是一家以網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計(jì)、品牌設(shè)計(jì)、軟件運(yùn)維、網(wǎng)站推廣、小程序App開發(fā)等移動開發(fā)為一體互聯(lián)網(wǎng)公司。已累計(jì)為石涼亭等眾行業(yè)中小客戶提供優(yōu)質(zhì)的互聯(lián)網(wǎng)建站和軟件開發(fā)服務(wù)。

一、安裝前準(zhǔn)備

系統(tǒng):centos 6.8

服務(wù)器IP:192.168.1.211

修改SELINUX=disabled

vi /etc/selinux/config

centos 6.8安裝postgresql9.6.9實(shí)戰(zhàn)centos 6.8安裝postgresql9.6.9實(shí)戰(zhàn)

關(guān)閉防火墻或者把5432端口允許開放

/etc/init.d/iptables stop

chkconfig iptables off

二、部署postgresql環(huán)境

2.1 安裝依賴包

yum -y install gcc* readline-devel wget

2.2創(chuàng)建用戶設(shè)置密碼

adduser postgres

passwd postgres

2.3下載postgresql安裝

wgethttps://ftp.postgresql.org/pub/source/v9.6.9/postgresql-9.6.9.tar.gz

tar zxvf postgresql-9.6.9.tar.gz

cd postgresql-9.6.9

./configure --prefix=/home/postgres/pgsql

gmake

gmake install

2.4 設(shè)置環(huán)境變量

vi /etc/profile

到最后行下面添加

###postgresql

PATH=$PATH:$HOME/bin:/home/postgres/pgsql/bin

環(huán)境生效

source /etc/profile

2.5創(chuàng)建數(shù)據(jù)目錄賦權(quán)

mkdir /home/postgres/pgsql/data

touch /home/postgres/pgsql/.pgsql_history

chown -R postgres:postgres /home/postgres/pgsql

2.6初始化數(shù)據(jù)庫

su - postgres

/home/postgres/pgsql/bin/initdb -D /home/postgres/pgsql/data

退出

exit

2.7修改啟動腳本

cp /root/postgresql-9.6.9/contrib/start-scripts/linux /etc/init.d/postgresql

vi /etc/init.d/postgresql

centos 6.8安裝postgresql9.6.9實(shí)戰(zhàn)centos 6.8安裝postgresql9.6.9實(shí)戰(zhàn)

保存退出

增加執(zhí)行權(quán)限

chmod +x /etc/init.d/postgresql

啟動postgresql

/etc/init.d/postgresql start

2.8測試postgresql

su - postgres

[postgres@post01 ~]$ psql

psql (9.6.9)

Type "help" for help.

postgres=# \l

List of databases

Name   |  Owner  | Encoding |  Collate  |   Ctype   |  Access privileges

-----------+----------+----------+-------------+-------------+-----------------------

postgres  | postgres | UTF8   | en_US.UTF-8 | en_US.UTF-8 |

template0 | postgres | UTF8   | en_US.UTF-8 | en_US.UTF-8 | =c/postgres      +

|      |      |       |       | postgres=CTc/postgres

template1 | postgres | UTF8   | en_US.UTF-8 | en_US.UTF-8 | =c/postgres      +

|      |      |       |       | postgres=CTc/postgres

(3 rows)

postgres=# \q

創(chuàng)建數(shù)據(jù)庫名為ybdb

createdb  ybdb

centos 6.8安裝postgresql9.6.9實(shí)戰(zhàn)centos 6.8安裝postgresql9.6.9實(shí)戰(zhàn)

2.9 修改postgresql.conf

vi pgsql/data/postgresql.conf

centos 6.8安裝postgresql9.6.9實(shí)戰(zhàn)centos 6.8安裝postgresql9.6.9實(shí)戰(zhàn)

重啟postgresql

/etc/init.d/postgresql restart

2.10 增加用戶并賦權(quán)

create user ybdba WITH PASSWOD 'ybdba#2018';

GRANT ALL PRIVILEGES ON DATABASE ybdb TO ybdba;

centos 6.8安裝postgresql9.6.9實(shí)戰(zhàn)centos 6.8安裝postgresql9.6.9實(shí)戰(zhàn)

遠(yuǎn)程登錄postgresql

centos 6.8安裝postgresql9.6.9實(shí)戰(zhàn)centos 6.8安裝postgresql9.6.9實(shí)戰(zhàn)

centos 6.8安裝postgresql9.6.9實(shí)戰(zhàn)

centos 6.8安裝postgresql9.6.9實(shí)戰(zhàn)centos 6.8安裝postgresql9.6.9實(shí)戰(zhàn)

centos 6.8安裝postgresql9.6.9實(shí)戰(zhàn)

出現(xiàn)以上圖錯誤 就修改ph_ha.conf

2.11 修改ph_ha.conf

注意:我的本地IP是192.168.1.79

vi  pgsql/data/pg_hba.conf

centos 6.8安裝postgresql9.6.9實(shí)戰(zhàn)centos 6.8安裝postgresql9.6.9實(shí)戰(zhàn)

用戶超級用戶運(yùn)行SELECT pg_reload_conf();

centos 6.8安裝postgresql9.6.9實(shí)戰(zhàn)centos 6.8安裝postgresql9.6.9實(shí)戰(zhàn)

遠(yuǎn)程登錄成功

centos 6.8安裝postgresql9.6.9實(shí)戰(zhàn)centos 6.8安裝postgresql9.6.9實(shí)戰(zhàn)

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。


本文名稱:centos6.8安裝postgresql9.6.9實(shí)戰(zhàn)-創(chuàng)新互聯(lián)
路徑分享:http://weahome.cn/article/dggdhi.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部