码迷,mamicode.com
首页 > 数据库 > 详细

CentOS 7 安装、配置、使用 PostgreSQL 9.5

时间:2016-11-11 23:01:41      阅读:567      评论:0      收藏:0      [点我收藏+]

标签:开机   修改   su -   用户   重载   ash   lis   链接   sql   

学习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  重载防火墙
-------------------------------------
  关闭防火墙
   [root@localhost ~]# systemctl stop firewalld.service
   [root@localhost ~]# systemctl disable firewalld.service
 
10. 重启PostgreSQL数据服务
    systemctl restart postgresql-9.5.service
 

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

CentOS 7 安装、配置、使用 PostgreSQL 9.5

标签:开机   修改   su -   用户   重载   ash   lis   链接   sql   

原文地址:http://www.cnblogs.com/marost/p/6055662.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!