一.设置参数 所有参数名称都是不区分大小写的 值为字符串时,需要单引号 值为数值时不需要单引号,但带单位时,需要单引号 配置文件(如:postgresql.conf.postgresql.auto.conf.pg_hba.conf) 默认在 database cluster 中 可以在 postgresql.conf 中使用 include ‘file’ 或 include_dir ‘directory’ 形式插入外部文件或目录(其中的所有文件)内容  二.文件位置 data_directory…
PostgreSQL  配置文件之pg_hba.conf 该文件用于控制访问安全性,管理客户端对于PostgreSQL服务器的访问权限,内容包括:允许哪些用户连接到哪个数据库,允许哪些IP或者哪个网段的IP连接到本服务器,以及指定连接时使用的身份验证模式. # Database administrative login by Unix domain socket local all postgres trust # TYPE DATABASE USER ADDRESS METHOD # "loc…
PostgreSQL被誉为“世界上功能最强大的开源数据库”,是以加州大学伯克利分校计算机系开发的POSTGRES 4.2为基础的对象关系型数据库管理系统. PostgreSQL支持大部分 SQL标准并且提供了许多其他现代特性:复杂查询.外键.触发器.视图.事务完整性.MVCC.同样,PostgreSQL 可以用许多方法扩展,比如,通过增加新的数据类型.函数.操作符.聚集函数.索引. 开发者可以免费使用.修改和分发 PostgreSQL,不管是私用.商用.还是学术研究使用. PostgreSQL:…
1.homebrew安装 brew install postgresql 2.初始化 initdb /usr/local/var/postgres 3.创建数据库及查看数据库 (1)先创建db. createdb (2)进入控制台 psql (3)查看现有数据库 \l 4.创建用户 CREATE USER postgres WITH PASSWORD 'XXXXXX'; 5.删除默认生成的数据库 DROP DATABASE postgres; 6.创建postgres用户的postgres数据库…
PostgreSQ数据库为了安全,它不会监听除本地以外的所有连接请求,当用户通过JDBC访问是,会报一些如下的异常: org.postgresql.util.PSQLException: FATAL: no pg_hba.conf entry for host $PGDATA/pg_hba.conf文件配置增加如下: # TYPE DATABASE USER ADDRESS METHOD host all all trust…
1        Set max_connections to three times the number of processor cores on the server. Include virtual (hyperthreading) cores. Set shared_buffers             to 4GB for servers with up to 64 GB of RAM. Use 8GB for systems with more than 64 GB of RA…
-- configs requiring postgresql restart select name, setting, context from pg_settings where context = 'postmaster'; postgres=# select name, setting, contextpostgres-# from pg_settings where context = 'postmaster'; name | setting | context ----------…
图解安装 PostgreSQL [博主]反骨仔 [原文地址]http://www.cnblogs.com/liqingwen/p/5894462.html 序 园友的一篇<Asp.Net Core 项目实战之权限管理系统(3) 通过EntityFramework Core使用PostgreSQL>需要用到 PostgreSQL 数据库,并考虑到自己后续的学习也涉及到该 PostgreSQL 数据库,这里只是简单演示下安装与使用,仅供参考. 目录 简介 安装前需要知道的几件事 开始安装 安装后的…
用一句话来总结这种改进就是: 支持唯一性约束和索引将null值视为相同的值.之前是将null值索引成不同的值,现在可以通过使用unique nulls not distinct创建约束,将null值视为相同的值. 两种unique风格 创建示例表: CREATE TABLE null_old_style ( id BIGINT GENERATED BY DEFAULT AS IDENTITY PRIMARY KEY, val1 TEXT NOT NULL, val2 TEXT NULL, CON…
After loooong pause, adding next (well, second) post to the “series“. This time, I'd like to describe how logging works. And I don't mean binary logging (WAL), but the log for us, humans, to read. Before I will go to the postgresql.conf options, let…