ubuntu16.04下安装postgres

Posted spqin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu16.04下安装postgres相关的知识,希望对你有一定的参考价值。

原博客地址:https://blog.csdn.net/weixin_44313745/article/details/93464298

    1、安装postgreSQL

sudo apt-get update
sudo apt-get install postgresql-9.5

    1
    2

    2、修改数据库用户连接的密码为123456

sudo -u postgres psql
postgres=# alter user postgres with password ‘123456‘;
postgres=# q

    1
    2
    3

    3、创建新用户 newuser

postgres=# create database ‘newuser‘ with password ‘111111‘;

    1

    4、创建数据库,并制定所有者

postgres=# create database ‘testdb‘ with owner = ‘newuser‘;

    1

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

sudo vim /etc/postgresql/9.5/main/postgresql.conf
1、在监听任何地址访问,修改连接权限
# listen_addresses = ‘localhost‘ 改为 listen_addresses=‘*"
2.启用密码验证
#password_encryption = on 改为 password_encryption = on
-----------------------------------------------------------------------------------
sudo vim /etc/postgresql/9.5/main/pg_hba.conf
在文档末尾加上一下内容:
host all all 0.0.0.0 0.0.0.0 md5

    1
    2
    3
    4
    5
    6
    7
    8
    9

    6、重启服务

/etc/init.d/postgresql restart

以上是关于ubuntu16.04下安装postgres的主要内容,如果未能解决你的问题,请参考以下文章

Ubuntu 16.04下安装64位谷歌Chrome浏览器

阿里云Ubuntu 16.04系统下安装Nginx

Ubuntu 16.04下安装MySQL详解

ubuntu16.04 下安装配置python3.6

Windows 7下安装Ubuntu16.04的方法

Ubuntu16.04下LAMP环境的安装与配置