PostgreSQL12 mac安装

PostgreSQL12 安装

下载地址:https://www.enterprisedb.com/downloads/postgres-postgresql-downloads

安装说明:https://www.enterprisedb.com/postgres-tutorials/installation-postgresql-mac-os

注意:Setting locale 的时候选择 zh_CN_UTF-8

安装成功以后添加path
export PATH="/Library/PostgreSQL/12/bin:$PATH"

用pgadmin4登入显示密码错误的话,用如下步骤:

1: sudo vi /Library/PostgreSQL/12/data/pg_hba.conf
# 将两个 md5 改成 trust
# "local" is for Unix domain socket connections only
local   all             all                                     trust
# IPv4 local connections:
host    all             all             127.0.0.1/32            trust

2: 停止服务,开启服务
先切换用户
su postgres
停止服务
/Library/PostgreSQL/12/bin/pg_ctl -D /Library/PostgreSQL/12/data stop
启动服务
/Library/PostgreSQL/12/bin/pg_ctl -D /Library/PostgreSQL/12/data start

3: 进入psql
sudo -u postgres psql

4: 修改密码
alter user postgres with password 'postgres';

这样登入pgadmin4就不会报错了

 

你可能感兴趣的:(postgresql,密码错误,登入错误)