標籤:.post 一個 start oss tab alter code 連接埠 arc
一、yum安裝pgsql10
二、
一、yum安裝pgsql10
- 先安裝pgsql
環境centos 7 64位
資料庫:pg10dev
參考網址:
http://blog.csdn.net/silenceray/article/details/70577610
建立使用者
[[email protected] ~]#useradd postgres
配置你的yum存放庫
[[email protected] ~]# vim /etc/yum.repos.d/CentOS-Base.repo
[base] 和[updates] 區段之間添加:
exclude=postgresql*
安裝pg的rpm檔案
[[email protected] ~]# yum localinstall https://download.postgresql.org/pub/repos/yum/testing/10/redhat/rhel-7-x86_64/pgdg-centos10-10-1.noarch.rpm
安裝pg資料庫
[[email protected] ~]# yum list postgresql*
[[email protected] ~]# yum install postgresql10-server.x86_64
[[email protected] ~]# mkdir postgres /var/lib/pgsql/10/data
初始化資料庫
[[email protected] ~]# /usr/pgsql-10/bin/postgresql10-setup initdb
Initializing database ... OK
[[email protected] ~]# su - postgres
[[email protected] ~]$ /usr/pgsql-10/bin/pg_ctl -D /var/lib/pgsql/10/data start
[[email protected] ~]$ /usr/pgsql-10/bin/psql -p 5432
psql (10devel)
輸入 "help" 來擷取協助資訊.
postgres=#
安裝完成!
- 配置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叢集