統(tǒng)版本:centos7.4 安裝方式:yum安裝 postgresql版本:9.4
1溃蔫、查看先前是否已經(jīng)安裝過postgresql 命令:# rpm -qa|grep postgres
2悔据、如果先前安裝過低版本的postgres可以通過rpm -e 卸載
3、如果使用默認(rèn)yum 安裝的話梅誓,會(huì)安裝較低版本的PostgreSQL 8.4,如果想安裝版本較高的postgresql需要使用PostgreSQL Yum Repository 來安裝最新版本的PostgreSQL佛南。
4梗掰、添加PostgreSQL yum repository 命令:rpm -i https://download.postgresql.org/pub/repos/yum/9.4/redhat/rhel-6-x86_64/pgdg-centos94-9.4-3.noarch.rpm
5、安裝新版本PostgreSQL 命令:#yum install postgresql94-server postgresql94-contrib
6嗅回、查看安裝 命令:# rpm -qa|grep postgres,執(zhí)行結(jié)果如下:
postgresql94-libs-9.4.1-1PGDG.rhel7.x86_64
postgresql94-server-9.4.1-1PGDG.rhel7.x86_64
postgresql94-9.4.1-1PGDG.rhel7.x86_64
postgresql94-contrib-9.4.1-1PGDG.rhel7.x86_64
7及穗、初始化數(shù)據(jù)庫之前,可以修改配置文件更改數(shù)據(jù)的存儲(chǔ)路徑(可選,默認(rèn)為/var/lib/postgres) 方法:vim /etc/init.d/postgresql-9.4 更改為: PGDATA=/data/pgsql/9.4/data(數(shù)據(jù)文件路徑) PGLOG=/data/pgsql/9.4/pgstartup.log(日志文件路徑) PGUPLOG=/data/pgsql/$PGMAJORVERSION/PGUPGRADE.log
8绵载、如果是已經(jīng)初始化數(shù)據(jù)庫埂陆,想更改數(shù)據(jù)路徑可將/var/lib/postgres下的data等文件刪除(前提是舊的數(shù)據(jù)沒有用,可以刪除)娃豹,然后重新初始化焚虱。
9、初始化數(shù)據(jù)庫 /usr/pgsql-9.4/bin/postgresql94-setup initdb
10懂版、啟動(dòng)數(shù)據(jù)庫 systemctl start postgresql-9.4.service
11鹃栽、設(shè)置postgresql服務(wù)開機(jī)自啟動(dòng) systemctl enable postgresql-9.4.service
12、修改PostgreSQL 數(shù)據(jù)庫用戶postgres的密碼(注意不是Linux系統(tǒng)帳號)PostgreSQL 數(shù)據(jù)庫默認(rèn)會(huì)創(chuàng)建一個(gè)postgres的數(shù)據(jù)庫用戶作為數(shù)據(jù)庫的管理員躯畴,默認(rèn)密碼為空民鼓,我們需要修改為指定的密碼薇芝,這里設(shè)定為’postgres’。
su - postgres
$ psql
ALTER USER postgres WITH PASSWORD ‘postgres’;
select * from pg_shadow ;
13丰嘉、修改linux 系統(tǒng)用戶postgres 的密碼 PostgreSQL 數(shù)據(jù)庫默認(rèn)會(huì)創(chuàng)建一個(gè)linux 系統(tǒng)用戶postgres恩掷,通過passwd 命令設(shè)置系統(tǒng)用戶的密碼為postgres。
passwd postgres
14供嚎、修改數(shù)據(jù)庫配置實(shí)現(xiàn)遠(yuǎn)程訪問
添加可訪問網(wǎng)段
vim /data/pgsql/9.4/data/pg_hba.conf (允許以下網(wǎng)段網(wǎng)段ip登錄 )
host all all 192.168.0.0/24 md5
更改監(jiān)聽地址
vim /data/pgsql/9.4/data/postgresql.conf
(監(jiān)聽更改為) listen_addresses = ‘’
15黄娘、重啟postgresql服務(wù)使配置生效 systemctl restart postgresql-9.4.service