centos 安装 postgresql

centos7 上安装 postgresql

安装 postgresql

1 更新源

yum install https://download.postgresql.org/pub/repos/yum/10/redhat/rhel-7-x86_64/pgdg-centos10-10-2.noarch.rpm -y

2 查看源

yum list | grep postgresql

安装其中的两个

yum install postgresql10-contrib postgresql10-server -y

3 初始化数据库

Postgresql安装目录是/usr/pgsql-10,而Postgresql的数据目录是/var/lib/pgsql/版本号/data目录

在这里,如果在装系统开始分配var空间足够大则可以继续,如果分配var空间不够,我们需要更改数据目录,在这里,我们假设var空间足够大。直接开始初始化。

在使用数据库的时候 建议将 数据库放到一个server 给与充足的空间上这样 有利于管理和维护

4 /usr/pgsql-10/bin/postgresql-10-setup initdb

会出先 初始化数据库成功

5 启动数据库并设置开机启动

sudo systemctl start postgresql-10 sudo systemctl enable postgresql-10.service

6 远程访问

修该两个配置文件

vi /var/lib/pgsql/10/data/pg_hba.conf

vi /var/lib/pgsql/10/data/postgresql.conf

7 重启数据库

systemctl restart postgresql-10

防火墙 添加允许访问端口号

sudo firewall-cmd --zone=public --add-port=5432/tcp --permanent

sudo firewall-cmd --reload

参考链接

https://blog.csdn.net/rudy5348/article/details/79299162

原文地址:https://www.cnblogs.com/wxbn/p/12243084.html

时间: 2024-10-10 20:15:26

centos 安装 postgresql的相关文章

CentOS安装postgresql 9.4

1. 安装PostgreSQL源 # yum install http://yum.postgresql.org/9.4/redhat/rhel-6-x86_64/pgdg-redhat94-9.4-1.noarch.rpm 在添加源的步骤中并没有太多的区别,主要是源的地址有一定的变化 执行安装命令 # yum install postgresql94-server postgresql94-contrib 验证是否安装成功 # rpm -aq| grep postgres 执行结果如下 pos

centos安装postgresql数据库过程

1.1.1  软件安装   1.设置用户组和用户级别 Postgresql不能以root身份运行,要以其他的身份运行,所以必须建立对应的用户和组. (1)新增database用户组:groupadd database (2)新增pgsql用户属于postgresql用户组:useradd -g database pgsql (3)修改pgsql用户密码:passwd pgsql(这里设置密码为postgres) 2. 操作系统信息:centos 5  x86 3.准备安装包,下载PostgreS

CentOS安装PostgreSQL

版本信息: CentOS版本:CentOS-7-x86_64-Minimal-1810 PostgreSQL版本: PostgreSQL 10.10, 64-bit 第一部分:PostgresSQL的安装 1.安装rpm文件 yum install https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm 2.安装客户端 yum install pos

阿里云CentOS安装PostgreSQL

在PostgreSQL官方文档:https://www.postgresql.org/download/linux/redhat/ 有选项和说明 1.检查有没安装:rpg -ga | grep postgresql 2.下载 从上述网址得到YUM地址,即在终端输入:yum install https://download.postgresql.org/pub/repos/yum/11/redhat/rhel-7-x86_64/pgdg-centos11-11-2.noarch.rpm 注意:整个

centos和redhat下安装postgreSQL

1.确定你要下载的版本:下载地址 2.进入你存放下载文件的目录运行wget http://yum.postgresql.org/9.2/redhat/rhel-5-i386/pgdg-centos92-9.2-6.noarch.rpm,我的是32bit的centos5,其他版本可以在上面的路径中找到相关的链接 3.运行命令 rpm -ivh pgdg-centos92-9.2-6.noarch.rpm 安装 4.运行命令 yum install postgresql92-server 安装ser

Linux CentOS 7 安装PostgreSQL 9.5(源码编译)

前言 之前的博客记录了通过rpm包的形式安装PostgreSQL 9.3(Linux CentOS 7 安装PostgreSQL 9.3(发行版本)),本篇blog将记录一下通过源码编译的形式安装PostgreSQL 9.5. 下载 在postgresql的官方即可找到源码文件目录,地址如下:https://www.postgresql.org/ftp/source/,在下载列表中根据需求选择版本,如下图: 进入子目录后,可以看到文件列表: 如上图,可以看到提供了两种压缩格式,此处我们选择pos

Linux CentOS 7 安装PostgreSQL 9.3(发行版本)

前言 如题,本篇blog记录一下在Linux CentOS 7中安装PostgresSQL的整个过程以及数据库配置等,在Linux系统中,PostgreSQL的安装方式分两种,分别是: 二进制安装包安装 源码编译安装 由于我们没有什么特殊需求所在在此选择较为简单的方式--二进制安装包安装,二进制包安装的方法一般都是通过不同发行版本的Linux下的包管理器进行的,例如Debian和Ubuntu下是使用apt-get命令或aptitude命令来安装,命令如下: sudo apt-get instal

CentOS 7 64位 安装 PostgreSQL 9.2整理

centos版本 LSB Version: :core-4.1-amd64:core-4.1-noarchDistributor ID: CentOSDescription: CentOS Linux release 7.0.1406 (Core)Release: 7.0.1406Codename: Core 注意:centos用yum安装postgresql的 数据库程序路径为:/usr/pgsql-9.2 数据库存储文件路径为: /var/lib/pgsql/ 1.运行:yum instal

在CentOS上编译安装PostgreSQL

http://my.oschina.net/tashi/blog 第一步:准备阶段 获取必需软件包: CentOS中查看是否安装了某个软件的命令:rpm -qa | grep 软件名.which命令可查看某个软件的安装路径.使用 yum install 包名 来安装软件包. 1.GNU make的版本3.80以上[[email protected] ~]# rpm -qa | grep makemake-3.81-20.el6.x86_64 [[email protected] ~]# make