Logo video2dn
  • Сохранить видео с ютуба
  • Категории
    • Музыка
    • Кино и Анимация
    • Автомобили
    • Животные
    • Спорт
    • Путешествия
    • Игры
    • Люди и Блоги
    • Юмор
    • Развлечения
    • Новости и Политика
    • Howto и Стиль
    • Diy своими руками
    • Образование
    • Наука и Технологии
    • Некоммерческие Организации
  • О сайте

Скачать или смотреть How to Configure PostgreSQL 15 on Docker and Connect to it using a Database Client (DBeaver)

  • Briztol Tech Academy
  • 2022-11-18
  • 1566
How to Configure PostgreSQL 15 on Docker and Connect to it using a Database Client (DBeaver)
UbuntuUbuntu 22.04DockerDocker 20PostgresPosgreSQLPostgres 15PostgreSQL 15DBeaverDatabase clientDbeaver with Postgres
  • ok logo

Скачать How to Configure PostgreSQL 15 on Docker and Connect to it using a Database Client (DBeaver) бесплатно в качестве 4к (2к / 1080p)

У нас вы можете скачать бесплатно How to Configure PostgreSQL 15 on Docker and Connect to it using a Database Client (DBeaver) или посмотреть видео с ютуба в максимальном доступном качестве.

Для скачивания выберите вариант из формы ниже:

  • Информация по загрузке:

Cкачать музыку How to Configure PostgreSQL 15 on Docker and Connect to it using a Database Client (DBeaver) бесплатно в формате MP3:

Если иконки загрузки не отобразились, ПОЖАЛУЙСТА, НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если у вас возникли трудности с загрузкой, пожалуйста, свяжитесь с нами по контактам, указанным в нижней части страницы.
Спасибо за использование сервиса video2dn.com

Описание к видео How to Configure PostgreSQL 15 on Docker and Connect to it using a Database Client (DBeaver)

In this video, we explain How to Configure PostgreSQL 15 on Docker and Connect to it using a Database Client (DBeaver). This is done on a Ubuntu 22.04 machine which is the latest Ubuntu version at the moment. However, the process is valid for all Ubuntu and Docker versions.

We assume you already have Docker on your machine. However, if you don't have Docker, you can install it using this guide - https://www.digitalocean.com/community/tut...

You can download the latest PostgreSQL version here. https://www.postgresql.org/docs/release/

After configuring Postgres with Docker, we create a database, and then we use a Database client to connect to the Postgres database. In this video, we use the DBeaver database client but the process is similar for other database clients as well.

Here is the list of commands used in the Video

Command to check installed docker version
docker -v

Command to check docker status
systemctl status docker


Docker run command to get installed postgres currently available latest version without specifyng a version
docker run -d -p 5432:5432 --name postgres -e POSTGRES_PASSWORD=testpassword postgres

Docker run command to get installed postgres version 13.2 by passing the version that we need to get configured
docker run -d -p 5432:5432 --name postgres -e POSTGRES_PASSWORD=testpassword postgres:13.2

Docker run command to get installed postgres version 15.1 by passing the version that we need to get configured
docker run -d -p 5432:5432 --name postgres -e POSTGRES_PASSWORD=testpassword postgres:15.1

Command to check details on configured docker image
docker ps -a

Login to the docker container
here postgres is the docker image name
docker exec -i -t postgres /bin/bash

Command for the user authentication. su or sudo is used to become the postgres super user
su - postgres

Command to connect to the postgresql server
psql

Command to create a postgresql database on postgresql database server 15.1
create database databse_name;
create database testdb1;

Command to grant all privileges for the created database
grant all privileges on database databse_name to postgres;
grant all privileges on database testdb1 to postgres;

Комментарии

Информация по комментариям в разработке

Похожие видео

  • О нас
  • Контакты
  • Отказ от ответственности - Disclaimer
  • Условия использования сайта - TOS
  • Политика конфиденциальности

video2dn Copyright © 2023 - 2025

Контакты для правообладателей [email protected]