“So installieren Sie PSQL in Ubuntu” Code-Antworten

So installieren Sie PSQL in Ubuntu

sudo apt-get install postgresql
Clean Cockroach

Installieren Sie Postgres Ubuntu

# from the official postgresql site: https://www.postgresql.org/download/linux/ubuntu/
# this will install the latest version of the postgresql.

# Create the file repository configuration:
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'

# Import the repository signing key:
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -

# Update the package lists:
sudo apt-get update

# Install the latest version of PostgreSQL.
# If you want a specific version, use 'postgresql-12' or similar instead of 'postgresql':
sudo apt-get -y install postgresql
nidal bakir

Ähnliche Antworten wie “So installieren Sie PSQL in Ubuntu”

Fragen ähnlich wie “So installieren Sie PSQL in Ubuntu”

Weitere verwandte Antworten zu “So installieren Sie PSQL in Ubuntu” auf Sql

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen