PostgreSQL 10.12 安裝系列 - Yum+rpm 安裝
Yum倉庫下載:
安裝yum倉庫:
[root@open_source ~]# ls anaconda-ks.cfg pgdg-redhat-repo-latest.noarch.rpm [root@open_source ~]# rpm -ivh pgdg-redhat-repo-latest.noarch.rpm warning: pgdg-redhat-repo-latest.noarch.rpm: Header V4 DSA/SHA1 Signature, key ID 442df0f8: NOKEY Preparing... ################################# [100%] Updating / installing... 1:pgdg-redhat-repo-42.0-6 ################################# [100%] [root@open_source ~]# ls -rtl /etc/yum.repos.d/pgdg-redhat-all.repo -rw-r--r-- 1 root root 5904 Sep 27 09:04 /etc/yum.repos.d/pgdg-redhat-all.repo
透過yum安裝資料庫:
[root@open_source ~]# yum install -y postgresql10 [root@open_source ~]# yum install postgresql10-server
初始化資料庫:
[root@open_source ~]# /usr/pgsql-10/bin/postgresql-10-setup initdb
配置開啟啟動:
[root@open_source ~]# systemctl enable postgresql-10
啟動資料庫:
[root@open_source ~]# systemctl start postgresql-10
不限制任何主機並允許遠端登陸:
[root@open_source ~]# vi /var/lib/pgsql/10/data/postgresql.conf 修改listen_addresses = ‘*’
修改pg.hba檔案需要重啟服務:
[root@open_source ~]# vim /var/lib/pgsql/11/data/pg_hba.conf 新增 host all all 0.0.0.0/0 md5
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/20674423/viewspace-2676888/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- PostgreSQL 10.12 安裝系列 - 原始碼安裝SQL原始碼
- PostgreSQL 10.12 安裝系列 - 本地RPM安裝SQL
- Postgresql——postgis安裝SQL
- postgresql安裝(source)SQL
- postgresql 下載安裝SQL
- OpenEuler安裝配置PostgreSQLSQL
- 安裝Postgresql12.1SQL
- docker 下安裝postgresqlDockerSQL
- 原始碼安裝postgresql原始碼SQL
- PostgreSQL:Redhat 8.5 + PostgreSQL 14.5 安裝SQLRedhat
- postgresql下載安裝包如何解壓安裝SQL
- 【PG安裝】postgresql10 for linux 原始碼安裝SQLLinux原始碼
- centos換源+安裝postgresqlCentOSSQL
- PostgreSQL簡介及安裝SQL
- Ubuntu下PostgreSQL的安裝UbuntuSQL
- CentOS 7 安裝、配置、使用 PostgreSQL 10 安裝及基礎配置CentOSSQL
- 【CentOS】CentOS7安裝PostgreSQLCentOSSQL
- linux安裝postgresql三種方式LinuxSQL
- Ubuntu下離線安裝PostgreSQLUbuntuSQL
- openeuler原始碼安裝Postgresql 16原始碼SQL
- Mac 使用 brew 方式安裝 postgresqlMacSQL
- 如何檢視是否安裝postgresqlSQL
- PostgreSQL-原始碼安裝(一)SQL原始碼
- PostgreSQL 安裝擴充套件包SQL套件
- Windows 安裝包啟動PostgresqlWindowsSQL
- PostgreSql安裝教程(填坑版!)SQL
- Bclinux離線安裝PostgreSQL10.23+PostGIS2.5編譯安裝配置LinuxSQL編譯
- postgreSQL學習(一):在Linux下安裝postgreSQLSQLLinux
- Openshift 4.4 靜態 IP 離線安裝系列:初始安裝
- Rocky9系統安裝PostgreSQLSQL
- PostgreSQL簡介及安裝步驟SQL
- PostgreSQL 10.23 二進位制安裝SQL
- window版postgresql安裝orafce外掛SQL
- 怎麼確定postgresql是否安裝SQL
- PostgreSQL 13 原始碼安裝(#1.1)-202103SQL原始碼
- postgresql的yum安裝及配置方法SQL
- Postgresql日常運維-安裝(Linux)01SQL運維Linux
- Postgresql日常運維-安裝(Windows)02SQL運維Windows