您好,登錄后才能下訂單哦!
一、yum安裝pgsql10
二、
一、yum安裝pgsql10
創建用戶
[root@localhost ~]#useradd postgres
配置你的yum存儲庫
[root@localhost ~]# vim /etc/yum.repos.d/CentOS-Base.repo
[base] 和[updates] 區段之間添加:
exclude=postgresql*
安裝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
安裝pg數據庫
[root@localhost ~]# yum list 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
[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 修改端口
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。