CentOS 7 安装配置使用 PostgreSQL 9.5

Posted marost

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 7 安装配置使用 PostgreSQL 9.5相关的知识,希望对你有一定的参考价值。

学习CentOS下安装使用PostgreSQL

【安装过程】

1.添加RPM
    yum install https://download.postgresql.org/pub/repos/yum/9.5/redhat/rhel-7-x86_64/pgdg-centos95-9.5-2.noarch.rpm
2.安装PostgreSQL 9.5

    yum install postgresql95-server postgresql95-contrib

3.初始化数据库
    /usr/pgsql-9.5/bin/postgresql95-setup initdb

4.设置开机自启动
    systemctl enable postgresql-9.5.service

5.启动服务
    systemctl start postgresql-9.5.service

自此,PostgreSQL 9.5 安装完成,以上一直使用的是root用户进行的安装。

【简单的配置】

PostgreSQL 安装完成后,会建立一下‘postgres’用户,用于执行PostgreSQL,数据库中也会建立一个‘postgres‘用户,默认密码为自动生成,需要在系统中改一下。

6.修改用户密码
    su - postgres  切换用户,执行后提示符会变为 ‘-bash-4.2$‘
    psql -U postgres 登录数据库,执行后提示符变为 ‘postgres=#‘
    ALTER USER postgres WITH PASSWORD ‘123456‘  设置postgres用户密码
    \q  退出数据库

7.开启远程访问
    vi /var/lib/pgsql/9.5/data/postgresql.conf
    修改#listen_addresses = ‘localhost‘  为  listen_addresses=‘*‘【前面的注释要去掉哦!】
    当然,此处‘*’也可以改为任何你想开放的服务器IP
8.信任远程连接
    vi /var/lib/pgsql/9.5/data/pg_hba.conf
    修改如下内容,信任指定服务器连接
    # IPv4 local connections:
    host    all            all      127.0.0.1/32      trust
    host    all            all      my_remote_client_ip_address/32  trust
  my_remote_client_ip_address是客户端的IP地址。
9.打开防火墙【开发环境或者内网可以直接把防火墙关掉】
    CentOS 防火墙中内置了PostgreSQL服务,配置文件位置在/usr/lib/firewalld/services/postgresql.xml,我们只需以服务方式将PostgreSQL服务开放即可。
    firewall-cmd --add-service=postgresql --permanent  开放postgresql服务
    firewall-cmd --reload  重载防火墙
-------------------------------------
  关闭防火墙
   [[email protected] ~]# systemctl stop firewalld.service
   [[email protected] ~]# systemctl disable firewalld.service
 
10. 重启PostgreSQL数据服务
    systemctl restart postgresql-9.5.service
 

文/lasko(简书作者)
原文链接:http://www.jianshu.com/p/7e95fd0bc91a



























以上是关于CentOS 7 安装配置使用 PostgreSQL 9.5的主要内容,如果未能解决你的问题,请参考以下文章

Linux(CentOS 7.0)下使用yum安装配置和使用svn.

CentOS 7 安装配置使用 PostgreSQL 9.5

CentOS 7使用源码编译安装Nginx,以及配置使用autoindex模块

CentOS 7安装 MySQL 8(RPM+Tar)+首次配置

CentOS 7 安装 Nginx 配置反向代理

CentOS 7.0 使用 yum 安装 MariaDB 与 MariaDB 的简单配置