1、yum安裝pgsql10
2、sql
1、yum安裝pgsql10數據庫
建立用戶 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=#
安裝完成!
2.2 修改配置文件,容許遠程登錄。
和pg_hba.conf一個目錄下的,postgresql.conf,
listen_addresses = 'localhost' ,改爲listen_addresses = '*'
2.3 修改端口