标签:
导入命令
psql -d GAME -U postgres -f /root/plubic.sql
出现如下错误:
psql: FATAL: Peer authentication failed for user "postgres" 出现这样子命令解决方法
运行下面的命令编辑pg_hba.conf文件 因为找不到pg_hba.conf
find / -name pg_hba.conf
vi /var/lib/pgsql/9.5/data/pg_hba.conf
2. 将
# Database administrative login by Unix domain socket local all postgres peer
改为
# Database administrative login by Unix domain socket local all postgres trust
3. 保存后执行下面的命令重新加载配置文件:
/etc/init.d/postgresql-9.5 reload
4.登入postgres
sudo -u postgres psql
\l 查看数据库
\c GAME
\d 查看GAME的表
标签:
原文地址:http://www.cnblogs.com/tantanba/p/5568485.html