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
- Mac 10.12安裝XMindMac
- postgresql安裝(source)SQL
- caffe安裝系列——安裝OpenCVOpenCV
- PostgreSQL資料庫管理系列之一——安裝SQL資料庫
- 原始碼安裝postgresql原始碼SQL
- docker 下安裝postgresqlDockerSQL
- 安裝PostgreSQL 時報錯SQL
- postgresql 下載安裝SQL
- OpenEuler安裝配置PostgreSQLSQL
- postgresql下載安裝包如何解壓安裝SQL
- Postgresql Linux版本安裝——RPM包安裝SQLLinux
- 【PG安裝】postgresql10 for linux 原始碼安裝SQLLinux原始碼
- 使用免安裝版本在windows上手動安裝PostgreSQLWindowsSQL
- PostgreSQL:Redhat 8.5 + PostgreSQL 14.5 安裝SQLRedhat
- 安裝Postgresql12.1SQL
- centos換源+安裝postgresqlCentOSSQL
- Ubuntu下PostgreSQL的安裝UbuntuSQL
- PostgreSQL簡介及安裝SQL
- rails 4安裝配置PostgreSQLAISQL
- 安裝postgresql odbc驅動SQL
- CentOS 7 安裝、配置、使用 PostgreSQL 10 安裝及基礎配置CentOSSQL
- PostgreSQL 安裝擴充套件包SQL套件
- PostgreSQL-原始碼安裝(一)SQL原始碼
- 如何檢視是否安裝postgresqlSQL
- PostgreSql安裝教程(填坑版!)SQL
- Windows 安裝包啟動PostgresqlWindowsSQL
- 在Linux上安裝postgresqlLinuxSQL
- 在 Linux 上安裝 PostgreSQLLinuxSQL
- postgresql和postgis外掛安裝SQL
- 【CentOS】CentOS7安裝PostgreSQLCentOSSQL
- Mac 使用 brew 方式安裝 postgresqlMacSQL
- Ubuntu下離線安裝PostgreSQLUbuntuSQL
- openeuler原始碼安裝Postgresql 16原始碼SQL
- codis安裝 (java 安裝 + zookeeper 安裝 + go 安裝 + codis 安裝JavaGo
- Postgresql日常運維-安裝(Windows)02SQL運維Windows
- postgresql的yum安裝及配置方法SQL