微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

CentOS7安装PostgreSQL

一、安装

  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 postgressql10
  3.安装服务端
  yum install postgresql10-server
  4.初始化
  /usr/pgsql-10/bin/postgresql-10-setup initdb
  5.设置自动启动并且启动postgressql服务
  systemctl enable postgresql-10
  systemctl start postgresql-10

二、创建数据库用户

  1.使用postgres用户登录(Postgressql安装后会自动创建postgres用户,无密码
  su - postgres
  2.登录到postgresql数据库
  psql
  3.创建用户
  create user test with password 'cps123';
  4.创建数据库
  create database test_db owner test ;
  5.授权访问
  grant all privileges on database test_db to test

三、远程访问

  1、修改/var/lib/pgsql/10/data/postgresql.conf文件,取消 listen_addresses 的注释,将参数值改为“*”
  2、修改/var/lib/pgsql/10/data/pg_hba.conf文件添加
  host all all 0.0.0.0/0 md5
  3、切换到root用户,重启postgresql服务
  systemctl restart postgresql-10.service

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐