-
Introduction
-
- Join this Course to access resources
-
-
MODULE 1 — Odoo 19 & AI Architecture (Conceptual Foundation)
-
- Join this Course to access resources
- Quiz
-
-
MODULE 2 — PostgreSQL 17 for AI-Ready Odoo
-
- Join this Course to access resources
- Quiz
-
MODULE 3 — Odoo Database User & Ownership Model
-
- Join this Course to access resources
- Quiz
-
-
MODULE 4 — AI & Search Extensions (Core Differentiator)
-
- Join this Course to access resources
- Quiz
-
-
MODULE 5 — Performance Tuning for AI Workloads
-
- Join this Course to access resources
- Quiz
-
-
MODULE 6 — Odoo 19 AI Configuration & API Keys
-
- Join this Course to access resources
- Quiz
-
MODULE 7 — AI Agents (Intelligent Automation)
-
- Join this Course to access resources
- Quiz
-
MODULE 8 — AI Fields & AI Webpages
-
- Join this Course to access resources
- Quiz
-
MODULE 9 — Final Validation & Certification
-
- Join this Course to access resources
-
Lesson 2.2 — Installing PostgreSQL 17 (Guided Lab)
Click on the "Edit" button in the top corner of the screen to edit your slide content.
Lab Goal: Install PostgreSQL 17 safely using PGDG.
sudo apt update
sudo apt install curl ca-certificates gnupg2 -y
curl -fsSL https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/postgresql.gpg
echo "deb [signed-by=/etc/apt/trusted.gpg.d/postgresql.gpg] http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" | sudo tee /etc/apt/sources.list.d/pgdg.list
sudo apt update
sudo apt install postgresql-17 postgresql-client-17 -y
Verification
pg_lsclusters
Rating
0
0
There are no comments for now.
Join this Course
to be the first to leave a comment.
1.
Why avoid Ubuntu’s default PostgreSQL repo?