博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
postgresql centos安装
阅读量:5874 次
发布时间:2019-06-19

本文共 962 字,大约阅读时间需要 3 分钟。

hot3.png

参考:https://www.postgresql.org/download/linux/redhat/

 

135835_oM8x_160697.png

  • Install the repository RPM:yum install https://download.postgresql.org/pub/repos/yum/10/redhat/rhel-7-x86_64/pgdg-centos10-10-1.noarch.rpm
  • Install the client packages:yum install postgresql10
  • Optionally install the server packages:yum install postgresql10-server
  • Optionally initialize the database and enable automatic start:
  • /usr/pgsql-10/bin/postgresql-10-setup initdb
    systemctl enable postgresql-10
    systemctl start postgresql-10

修改密码:

su postgrespsqlALTER USER postgres WITH PASSWORD '123456';\qsu root

修改PostgresSQL数据库配置实现远程访问

①、修改postgresql.conf 文件:

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

 

listen_addresses前的#去掉,并将 listen_addresses = 'localhost' 改成 listen_addresses = '*'; 

②、修改客户端认证配置文件pg_hba.conf,将需要远程访问数据库的IP地址或地址段加入该文件。

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

 

将IPv4区下的127.0.0.1/32修改为0.0.0.0/0; 将ident修改为md5 

③、重启服务使设置生效

systemctl restart postgresql-10

转载于:https://my.oschina.net/u/160697/blog/1608382

你可能感兴趣的文章
HTML5 video 视频标签 常用属性
查看>>
深入理解javascript对象系列第一篇——初识对象
查看>>
Redis_master-slave模式
查看>>
qemu安装
查看>>
多媒体开发之rtmp---rtmp client 端的实现
查看>>
3.使用Maven构建Web项目
查看>>
iView实现自定义Modal
查看>>
如何在云帮上配置https
查看>>
JQuery干货篇之插入元素
查看>>
Imperva开源域目录控制器,简化活动目录集成
查看>>
可观察性驱动开发,探索未知之地
查看>>
Webpack构建兼容IE8
查看>>
Deis发布1.4版本,支持Microsoft Azure
查看>>
解读2016之Golang篇:极速提升,逐步超越
查看>>
原创:新手布局福音!微信小程序使用flex的一些基础样式属性(二)
查看>>
Swift 烧脑体操(二) - 函数的参数
查看>>
用Elm语言降低失败的风险
查看>>
荷兰商业银行使用精益领导力推行改进
查看>>
Java 10新特性前瞻
查看>>
每秒解析千兆字节的JSON解析器开源,秒杀一大波解析器!
查看>>