2023年9月29日

PostgreSQL: Linux/Ubuntu源码编译安装PostgreSQL报错,提示 configure: error: xxx library not found

1. 问题概述: Linux/Ubuntu源码编译安装PostgreSQL,执行 ./configure 报错: configure: error: readline library not found If you have readline already installed, see config.log for details on the failure. It is possible the compiler isn't looking in the proper directory. Use --without-readline to disable readline support. 2. 相关原因: 未安装 readline 开发包。 3. 解决办法: 检查系统是否安装 readline 包 $ sudo dpkg -l | grep readline 如果没有libreadline-dev,则需安装 $ su…
2023年9月28日

PostgreSQL: PostgreSQL 参考文档 / 示例数据库 / Quick Links

PostgreSQL 参考文档: PostgreSQL PostgreSQL 14.1 手册 http://www.postgres.cn/docs/14/index.html PostgreSQL 14.9 Documentation https://www.postgresql.org/docs/14/index.html PostgreSQL高可用测试系列之Patroni + etcd + HAProxy + Keepalived 离线部署 https://blog.csdn.net/u010692693/article/details/121123843 PostgreSQL数据库的安装与配置  https://www.cnblogs.com/dengyulinBlog/p/6424462.html PostgreSQL PostgreSQL 教程 P…