ubuntu postgresql 的安装

Posted lplucky

tags:

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

一、ubuntu

1、sudo apt-get install postgresql

2、sudo su postgres

3、更改密码(postgresql安装好后有个默认用户和默认数据库,名字都是postgres,我们需要先设置一个密码,然后才能连接)

  

4、连接

  psql -U postgres -d postgres -h 127.0.0.1 -p 5432

  需要指定用户名和将使用的数据,然后会提示输入密码,输入第3步更改的密码即可

二、centos

1、sudo yum -y install postgresql-server

2、sudo service postgresql initdb

3、 chkconfig postgresql on

4.

  

5、 sudo vim /var/lib/pgsql/data/pg_hba.conf

  红色框内之前是ident,全部改为trust(改为trus不需要密码,改为md5需要密码)

  

6、重启

sudo systemctl restart postgresql

7.连接

psql -U postgres -d postgres -h 127.0.0.1 -p 5432

 

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

Ubuntu 16.04 怎样安装 PostgreSQL 和 phpPgAdmin

ubuntu下安装 postgresql 的命令

PostgreSQL在Ubuntu上安装指南

Ubuntu PostgreSQL安装和配置

在 Ubuntu 上为 Ruby on Rails 安装 PostgreSQL

ubuntu编译安装postgresql