postgresql

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
postgresql [2024/04/24 03:29] – [Postgres Install] adminpostgresql [2024/08/04 02:07] (current) – [Postgresql] admin
Line 1: Line 1:
 ====== Postgresql ====== ====== Postgresql ======
 +<code PYTHON> 
 +
 +psql -h 192.168.1.100 -p 5432 -U u1 mydatabase
 +
 +
 +import psycopg2
 +conn = psycopg2.connect("host='10.59.1.50' dbname='DB' user='perm' password='perm'")
 +</code>
 ===== Interesting sites ===== ===== Interesting sites =====
 ** PostgreSQL ** ** PostgreSQL **
 +  * https://postgresqlco.nf/ - configuration
   * https://pgpedia.info/ - encyclopedia of postgres   * https://pgpedia.info/ - encyclopedia of postgres
   * https://www.interdb.jp/pg/ - internal structure postgresql  Pavel Kopalov, [13.04.21 22:23]     * https://www.interdb.jp/pg/ - internal structure postgresql  Pavel Kopalov, [13.04.21 22:23]  
Line 746: Line 755:
  
   *  shared memory no space left https://medium.com/@tough_jonquil_dog_815/postgresql-no-space-left-on-device-a9c5c3b41cff   *  shared memory no space left https://medium.com/@tough_jonquil_dog_815/postgresql-no-space-left-on-device-a9c5c3b41cff
 +  * docker shared memory https://www.instaclustr.com/blog/postgresql-docker-and-shared-memory/
  
 ==== Postgres.DBA locale collation LC_COLLATE setlocale==== ==== Postgres.DBA locale collation LC_COLLATE setlocale====
Line 1217: Line 1227:
   * Wal-g - https://habr.com/ru/post/506610/ - пример   * Wal-g - https://habr.com/ru/post/506610/ - пример
   * пример ручного dump c WAL https://pgdash.io/blog/postgres-incremental-backup-recovery.html   * пример ручного dump c WAL https://pgdash.io/blog/postgres-incremental-backup-recovery.html
 +  * пример pg_backup <https://stormatics.tech/blogs/postgresql-physical-backups-using-pg_basebackup-a-comprehensive-guide>
  
 === Wal-g.Backup статьи === === Wal-g.Backup статьи ===
Line 1373: Line 1384:
 ===== Postgres Cluster ===== ===== Postgres Cluster =====
 https://github.com/vitabaks/postgresql_cluster https://github.com/vitabaks/postgresql_cluster
-===== Postgres Information =====+===== Postgres Information , monitoring , performance , tools =====
  
   * :!:[[https://tapoueh.org/conf/|Автор Postgresql]]   * :!:[[https://tapoueh.org/conf/|Автор Postgresql]]
Line 1398: Line 1409:
   * [[https://www.slideshare.net/samokhvalov/postgres-docker-highload-2018|Docker Highload]]   * [[https://www.slideshare.net/samokhvalov/postgres-docker-highload-2018|Docker Highload]]
   * [[https://tapoueh.org/tags/concurrency/|Postgresql concurrency]]   * [[https://tapoueh.org/tags/concurrency/|Postgresql concurrency]]
 +  * [[https://habr.com/ru/companies/tensor/articles/808931/|Неожиданные последствия запуска PostgreSQL в Docker: отключение JIT и разбор запросов / Хабр
  
 ==== Postgres.Pooler ==== ==== Postgres.Pooler ====
  • postgresql.1713929354.txt.gz
  • Last modified: 2024/04/24 03:29
  • by admin