測試postgresql集羣

1、yum安裝pgsql10
2、sql


1、yum安裝pgsql10數據庫

  1. 先安裝pgsql
    環境centos 7 64位
    數據庫:pg10dev
    參考網址:
    http://blog.csdn.net/silenceray/article/details/70577610

建立用戶 vim

[root@localhost ~]#useradd postgres centos

配置你的yum存儲庫 ide

[root@localhost ~]# vim /etc/yum.repos.d/CentOS-Base.repo
[base] 和[updates] 區段之間添加:
exclude=postgresql* post

安裝pg的rpm文件 測試

[root@localhost ~]# yum localinstall https://download.postgresql.org/pub/repos/yum/testing/10/redhat/rhel-7-x86_64/pgdg-centos10-10-1.noarch.rpm .net

安裝pg數據庫
[root@localhost ~]# yum list postgresql* postgresql

[root@localhost ~]# yum install postgresql10-server.x86_64
[root@localhost ~]# mkdir postgres /var/lib/pgsql/10/data
初始化數據庫
[root@localhost ~]# /usr/pgsql-10/bin/postgresql10-setup initdb
Initializing database ... OK code

[root@localhost ~]# su - postgres

[postgres@localhost ~]$ /usr/pgsql-10/bin/pg_ctl -D /var/lib/pgsql/10/data start

[postgres@localhost ~]$ /usr/pgsql-10/bin/psql -p 5432
psql (10devel)
輸入 "help" 來獲取幫助信息.

postgres=#

安裝完成!

  1. 配置pgsql,使客戶端能訪問
    2.1 改密碼
    (1)su postgres
    (2) psql -U postgres -p5433
    (3)alter user postgres with password 'postgres' ;

2.2 修改配置文件,容許遠程登錄。
和pg_hba.conf一個目錄下的,postgresql.conf,

listen_addresses = 'localhost' ,改爲listen_addresses = '*'

2.3 修改端口
測試postgresql集羣

相關文章
相關標籤/搜索