溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

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

發(fā)布時間:2020-06-05 21:18:03 來源:網(wǎng)絡 閱讀:4770 作者:jxzhfei 欄目:數(shù)據(jù)庫

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

一、安裝前準備

系統(tǒng):centos 6.8

服務器IP:192.168.1.211

修改SELINUX=disabled

vi /etc/selinux/config

centos 6.8安裝postgresql9.6.9實戰(zhàn)centos 6.8安裝postgresql9.6.9實戰(zhà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)建用戶設置密碼

adduser postgres

passwd postgres

2.3下載postgresql安裝

wget https://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 設置環(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實戰(zhàn)centos 6.8安裝postgresql9.6.9實戰(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實戰(zhàn)centos 6.8安裝postgresql9.6.9實戰(zhàn)

2.9 修改postgresql.conf

vi pgsql/data/postgresql.conf

centos 6.8安裝postgresql9.6.9實戰(zhàn)centos 6.8安裝postgresql9.6.9實戰(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實戰(zhàn)centos 6.8安裝postgresql9.6.9實戰(zhàn)

遠程登錄postgresql

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

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

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

centos 6.8安裝postgresql9.6.9實戰(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實戰(zhàn)centos 6.8安裝postgresql9.6.9實戰(zhàn)

用戶超級用戶運行SELECT pg_reload_conf();

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

遠程登錄成功

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


向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI