PostgreSQL

Da GazziNet.
Versione del 11 giu 2023 alle 13:58 di Admin (discussione | contributi) (Creata pagina con "Client Consigliato: DBeaver https://blog.mclaughlinsoftware.com/2022/11/24/almalinuxpostgresql/ Sistema di installazione suggerito: https://www.postgresql.org/download/ # Install the repository RPM: sudo dnf install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-9-x86_64/pgdg-redhat-repo-latest.noarch.rpm # Disable the built-in PostgreSQL module: sudo dnf -qy module disable postgresql <-- Importante!! # Install PostgreSQL: sudo dnf install -y postgre...")
(diff) ← Versione meno recente | Versione attuale (diff) | Versione più recente → (diff)
Vai alla navigazione Vai alla ricerca

Client Consigliato: DBeaver

https://blog.mclaughlinsoftware.com/2022/11/24/almalinuxpostgresql/


Sistema di installazione suggerito: https://www.postgresql.org/download/

  1. Install the repository RPM:

sudo dnf install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-9-x86_64/pgdg-redhat-repo-latest.noarch.rpm

  1. Disable the built-in PostgreSQL module:

sudo dnf -qy module disable postgresql <-- Importante!!

  1. Install PostgreSQL:

sudo dnf install -y postgresql15-server

  1. Optionally initialize the database and enable automatic start:

sudo /usr/pgsql-15/bin/postgresql-15-setup initdb sudo systemctl enable postgresql-15 sudo systemctl start postgresql-15