摘要:
查看有哪些数据库 psql l 或 \l 查看有哪些表 \d 连接到某个数据库 \c [dbname数据库名] 查看某个表的结构定义 \d [tabname表名] 或 \d+ [tabname表名] 查看索引信息 \d [idxname索引名] 或 \d+ [idxname索引名] 查看以某些字母开 阅读全文
摘要:
修改监听的IP和端口 修改postgresql.conf文件 listen_addresses = ' ' what IP address(es) to listen on; defaults to 'localhost'; use ' ' for all port = 5432 (change r 阅读全文