1. 程式人生 > >centos7.2 postgresql 9.2 使用者名稱登入 ‘psql: 致命錯誤: 使用者 "postgres" Ident 認證失敗’

centos7.2 postgresql 9.2 使用者名稱登入 ‘psql: 致命錯誤: 使用者 "postgres" Ident 認證失敗’

psql: 致命錯誤: 使用者 “postgres” Ident 認證失敗

  • 修改認證檔案 /var/lib/pgsql/9.2/data/pg_hba.conf
 vi /var/lib/pgsql/9.2/data/pg_hba.conf

把配置檔案中的認證 METHOD的ident修改為trust

  • 重啟postgresql伺服器
systemctl restart postgresql-9.2

附“Centos7.2 安裝postgresql 9.2方法”

官網安裝教程

總結如下:

  • 獲取rpm包
yum install https://download.postgresql.org/pub
/repos/yum/9.2/redhat/rhel-7-x86_64/pgdg-centos92-9.2-2.noarch.rpm
  • 安裝client
yum install postgresql92
  • 安裝server
yum install postgresql92-server
  • 檢視版本
psql --version
  • 初始化db
/usr/pgsql-9.2/bin/postgresql92-setup initdb
  • 開機自啟動
systemctl enable postgresql-9.2
  • 啟動postgresql
systemctl start
postgresql-9.2
  • 切換使用者為postgre
su - postgres
  • 登入
psql
  • 修改postgre的密碼
postgres=# alter user postgres with password '自己的password';
  • 建立資料庫
postgres=# CREATE DATABASE sina OWNER postgres;

成功後會提示:CREATE DATABASE

  • 賦予使用者 postgres許可權
postgres=# GRANT ALL PRIVILEGES ON DATABASE 資料庫名稱 to
postgres;

成功提示:GRANT

  • 直接登入
psql -U postgres -d 資料庫名稱 -h 127.0.0.1 -p 5432