Postgres基本命令及远程连接方案

前端之家收集整理的这篇文章主要介绍了Postgres基本命令及远程连接方案前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

参考下面这个:

http://www.jb51.cc/article/p-uwznpmpl-sa.html



安装完成后

su postgres

createdb mydb 若显示:CREATE DATABASE。证明安装成功!

psql mydb 提示:welcom。。。。。

SELECT datname FROM pg_database; 显示数据库名。。。。。

postgres的一些基本命令

**************************************************

./psql -U postgres

SELECT datname FROM pg_database;

./psql cas_data -U postgres 用户postgres进入cas_data数据库

/dt //显示所有数据表

select * from sc_data;

**************************************************

关于postgres远程访问的问题:

***************************************************

step 1 vi ../data/pg_hba.conf ,并且做如下修改

# "local" is for Unix domain socket connections only
local all all md5
# IPv4 local connections:
host all all 127.0.0.1/32 md5

host all all 0.0.0.0/0md5

step 2 重启postgres服务

su postgres

./pg_ctl stop -D ../data/ //停止服务

./pg_ctl start -D ../data/ //启动服务

***************************************************

参考文献

http://www.xxlinux.com/linux/article/development/database/20070820/9402.htmlpostgres客户端常用命令

http://www.pgsqldb.org/mwiki/index.php/%E9%A6%96%E9%A1%B5 postgresql中文之家

http://www.learndiary.com/archives/diaries/1856.htm远程连接postgr

http://xinsoft.bokee.com/5374965.html解决postgresql不能远程访问

原文链接:https://www.f2er.com/postgresql/197256.html

猜你在找的Postgre SQL相关文章