首頁>技術>

版本資訊:

CentOS版本:CentOS-7-x86_64-DVD-1611

PostgreSQL版本: (PostgreSQL) 9.6.20

想下載其他版本的環境請看以下連結:

CentOS安裝版本:https://archive.kernel.org/centos-vault/7.3.1611/isos/x86_64/

PostgreSQL安裝版本: https://www.postgresql.org/download/linux/redhat/

安裝

新增RPM源

sudo yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm

安裝資料庫核心服務端sudo yum install -y postgresql96-server

安裝第三方擴充套件(uuid)

yum install postgresql96-contrib.x86_64

檢查是否安裝成功

rpm -aq| grep postgres

配置相關資訊

1、建立資料庫存放路徑位置

mkdir -p /data/pg/data #存放資料庫的資料夾

chown -R postgres:postgres /data/pg #為新建立的pg資料夾分配資料庫服務的操作許可權

chown -R postgres:postgres /data/pg/data #為存放資料庫的資料夾分配許可權

chmod 750 /data/pg/data

2、配置/etc/profile檔案

vim /etc/profile

在末尾新增如下的資訊配置,儲存退出:

PGDATA=/data/pg/data

PGHOST=127.0.0.1

PGDATABASE=postgres

PGUSER=postgres

PGPORT=5432

PATH=/usr/pgsql-9.6/bin:$PATH

export PATH

export PGDATA PGHOST PGDATABASE PGUSER PGPORT

export TMOUT=1000

然後為了讓剛才修改生效

source /etc/profile

檢視是否已新增成功:

export

3、初始資料庫

su postgres #切換到postgres使用者

initdb -D /data/pg/data #初始化資料庫

#或

/usr/pgsql-9.6/bin/postgresql96-setup initdb -D /data/pg/data

exit #退出當前postgres使用者

4、配置遠端可訪問

vim /data/pg/data/pg_hba.conf

找到# IPv4 local connections: 在它的下面新增一行,儲存退出

host all all 0.0.0.0/0 md5

vim /data/pg/data/postgresql.conf

找到#listen_addresses = 'localhost'

將前面的#刪掉,改成listen_addresses = '*'

找到#port = 5432,將前面的#刪掉

vim /usr/lib/systemd/system/postgresql-9.6.service

#配置節裡面指定正確的PGDATA路徑,儲存退出

Environment=PGDATA=/data/pg/data/

重啟postgresql-9.6服務,使配置檔案重效service postgresql-9.6 restart

設定開機啟動處理

sudo systemctl enable postgresql-9.6

啟動postgresql資料庫sudo systemctl start postgresql-9.6

修改密碼:

su - postgres

然後輸入:psql

接著輸入:Alter user postgres with password '123456';

退出資料庫連線:\q

再退出:exit

防火牆與埠設定

systemctl enable firewalld #開機啟用防火牆

systemctl start firewalld #開啟防火牆

firewall-cmd --add-service=postgresql --permanent #開放postgresql服務

firewall-cmd --zone=public --add-port=5432/tcp --permanent #可以直接新增埠

firewall-cmd --reload # 過載防火牆

firewall-cmd --list-ports #檢視佔用埠

執行SQL檔案

切換使用者:su - postgres

然後輸入:psql

接著輸入: create database dataway owner postgres

檢視已有資料庫(右斜槓加L的小寫):\l

恢復表結構【遷移sql檔案(dataway-2020-12-3)放在根目錄】

退出連線資料庫:\q

再退出:exit

執行:pg_restore -d dataway -U postgres -C /dataway-2020-12-24

檢視恢復的表:

退出:\q

切換資料庫:psql -h 192.168.16.200 -p 5432 dataway postgres

輸入密碼:123456

檢視資料庫表:\dt

12
最新評論
  • BSA-TRITC(10mg/ml) TRITC-BSA 牛血清白蛋白改性標記羅丹明
  • Centos7安裝apache跨域設定(圖文詳細)