WINDOWS环境操作
- 1、远程连接报错:fatal: no pg_hba.conf entry for host
在“C:ProgramFiles(Mabyx86)PostgreSQL(您的版本)data”中找到“pg_hba.conf“文件中查询:IPv4 local connections
增加如下长一行:
host all all 0.0.0.0/0 md5
- 2、增加一个自动生成suid的函数,这样的话先要增加一扩展,执行语句:
create extension "uuid-ossp"
- 3、增加函数
create or replace function sys_guid() returns uuid as $$
select uuid_generate_v4();
$$ language sql strict;