postgres-toolkit A collection of scripts and utilities to manage PostgreSQL servers. Allows DBA to perform complicated tasks with single commands. Focusing on frequent tasks for PostgreSQL DBA to improve their productivity and quality of operations.…
查看帮助命令 DB=# help --总的帮助 DB=# \h --SQL commands级的帮助 DB=# \? --psql commands级的帮助 \dn[S+] [PATTERN],其中[PATTERN]表示可以使用正则表达式,比如\dns f*表示列出所有f开头的schema 按列显示,类似mysql的\G DB=# \x Expanded display is on. 显示斜杠\后面的命令对应的语句,ECHO_HIDDEN必须大写 \set ECHO_HIDDEN on 或 ps…
有时候,忘记了postgresql 安装时默认用户postgres 的密码,怎么办呢? linux shell命令下面输入: sudo -u postgres psql  (这样就可以直接登录进postgres 了, 然后在里面可以进行添加用户,修改密码之类的,都不是问题了!!) -------------------------------------------------------------------------------------------------------------…
使用 PGO 在 Kubernetes 上运行 Cloud Native PostgreSQL:来自 Crunchy Data 的 Postgres Operator! Cloud Native PostgreSQL https://www.crunchydata.com/products/crunchy-postgresql-for-kubernetes/ Crunchy Data https://www.crunchydata.com/ Postgres Operator https://g…
PostgreSQL相关的软件,库,工具和资源集合. 备份 wal-e - Simple Continuous Archiving for Postgres to S3, Azure, or Swift by Heroku Barman - Backup and Recovery Manager for Postgres by 2ndQuadrant GUI pgAdmin - Postgres Administration and Management GUI phpPgAdmin - The…
检查PostGIS.PostgreSQL.GEOS.GDAL.PROJ等各软件的版本依赖关系 http://trac.osgeo.org/postgis/wiki/UsersWikiPostgreSQLPostGIS 1. 创建postgres用户和组 # groupadd -g dba # useradd -u -g dba -G root -d /usr/local/pgsql postgres 2. 添加postgres用户环境变量 $ cat ~/.bash_profile # .bas…
转自:https://severalnines.com/blog/top-pg-clustering-ha-solutions-postgresql If your system relies on PostgreSQL databases and you are looking for clustering solutions for HA, we want to let you know in advance that it is a complex task, but not imposs…
在博文<数据库并发事务控制四:postgresql数据库的锁机制 > http://blog.csdn.net/beiigang/article/details/43302947 中后面提到: 常规锁机制可以参考pg的官方手册,章节和内容见下面 13.3. Explicit Locking http://www.postgresql.org/docs/9.4/static/explicit-locking.html 这节分为:表锁.行锁.页锁.死锁.Advisory锁(这个名字怎么翻译好???…
PostgreSQL数据库资料 转自:http://blog.csdn.net/postgrechina/article/details/49132791 推荐书籍: 概念书籍: <PostgreSQL Introduction and Concepts> 开发书籍: <PostgreSQL开发必备参考手册> 管理类书籍: <PostgreSQL 9 Administration Cookbook> <PostgreSQL 9.0 High Performance…
是最先进的数据库.他的第一个版本在1989年发布,从那时开始,他得到了很多扩展.根据db-enginers上的排名情况,PostgreSQL目前在数据库领域排名第四. 本篇博客,我们来讨论一下PostgreSQL的内部架构,以及各个组件之间如何交互.这将是本期PostgreSQL DBA系列博客的基石. 一.PostgreSQL的架构 PostgreSQL的物理架构非常简单,它由共享内存.一系列后台进程和数据文件组成. (如下图) 二.Shared Memory 共享内存是服务器服务器为数据库缓…