Thứ Bảy, 31 tháng 5, 2025

4.Quản lý, Cài đặt, Patch và Tham số Cấu hình Instance PostgreSQL

1. Tổng quan Instance PostgreSQL

  • Instance PostgreSQL = 1 tiến trình postmaster + thư mục dữ liệu ($PGDATA)

  • Có thể chạy nhiều instance trên 1 server (khác port + thư mục)

  • Cài đặt PostgreSQL thường kèm theo:

    • File nhị phân (bin/)

    • File cấu hình (postgresql.conf, pg_hba.conf, pg_ident.conf)

    • Thư mục dữ liệu (data/)

    • Log, WAL, tablespace…

🔧 2. Cài đặt PostgreSQL (chuẩn trên Linux)

⚙️ Trên RHEL/CentOS/Oracle Linux 7+

# Bước 1: Thêm repo chính thức
yum install -y https://download.postgresql.org/pub/repos/yum/13/redhat/rhel-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm # Bước 2: Cài server yum install -y postgresql13-server postgresql13 # Bước 3: Khởi tạo cluster /usr/pgsql-13/bin/postgresql-13-setup initdb # Bước 4: Bật & khởi động dịch vụ systemctl enable postgresql-13 systemctl start postgresql-13

🔧 3. Cập nhật Patch / Minor Version

  • PostgreSQL cập nhật bảo mật thông qua minor version (VD: 13.4 → 13.11), không thay đổi cấu trúc dữ liệu.

  • An toàn để yum update:

yum update postgresql13*
systemctl restart postgresql-13

⚠️ Không cần dump/restore khi upgrade minor version


🔍 4. Các file cấu hình chính

FileMô tả
postgresql.confToàn bộ tham số vận hành: memory, log, replication
pg_hba.confQuy tắc xác thực kết nối (host, user, method)
pg_ident.confMapping user hệ thống ↔ PostgreSQL

⚙️ 5. Cấu trúc thư mục Instance

/var/lib/pgsql/13/data/
├── postgresql.conf ├── pg_hba.conf ├── pg_wal/ # Thư mục chứa WAL log ├── base/ # File data theo từng DB ├── global/ # Metadata cluster └── log/ # Log nếu bật logging_collector

Bạn có thể tách WAL, data, archive ra ổ cứng khác để tối ưu I/O


🔧 6. Các nhóm tham số cấu hình quan trọng (postgresql.conf)

📌 a. Bộ nhớ:

shared_buffers = 4GB # RAM chia cho PostgreSQL cache
work_mem = 16MB # RAM cho sort/hash mỗi operation maintenance_work_mem = 1GB # RAM cho VACUUM, index rebuild effective_cache_size = 12GB # Bộ nhớ OS dự kiến dùng cho PostgreSQL

📌 b. WAL & checkpoint:

wal_level = replica
max_wal_size = 2GB min_wal_size = 512MB checkpoint_timeout = 5min

📌 c. Kết nối:

max_connections = 200
listen_addresses = '*' port = 5432

📌 d. Log & debug:

logging_collector = on
log_directory = 'log' log_filename = 'postgresql-%Y-%m-%d.log' log_min_duration_statement = 500 # Log query > 500ms

📌 e. Replication:

max_wal_senders = 10
wal_keep_segments = 64 hot_standby = on

🛠️ 7. Kiểm tra và thay đổi cấu hình

🔍 Kiểm tra giá trị:

SHOW shared_buffers;
SHOW work_mem;

✏️ Sửa file & reload:

vi postgresql.conf
systemctl reload postgresql-13

Hoặc dùng SQL:

SELECT pg_reload_conf();

⛔ Một số tham số cần restart:

  • shared_buffers, wal_level, max_connections, listen_addresses

  • Muốn kiểm tra:

SELECT name, context FROM pg_settings WHERE context = 'postmaster';

🔄 8. Chạy nhiều instance trên 1 máy

# Dựng cluster thứ 2 (port khác)
initdb -D /data/pg14_node2 echo "port = 5433" >> /data/pg14_node2/postgresql.conf pg_ctl -D /data/pg14_node2 start

9. Best Practices khi cấu hình instance

Mục tiêuGợi ý cấu hình
RAM > 64GBshared_buffers ~ 25%, effective_cache_size ~ 75%
Nhiều kết nốiDùng PgBouncer để pool
Disk chậmGiảm checkpoint_timeout, bật wal_compression
Tối ưu autovacuumBật log_autovacuum_min_duration, tune threshold
An toànGiới hạn max_connections, audit login/logout

📌 Tổng kết

Cấu hình PostgreSQL Instance ảnh hưởng trực tiếp đến:

  • Hiệu năng

  • Tính sẵn sàng

  • Bảo mật

  • Tính mở rộng

Bạn cần quản lý instance theo nguyên tắc:

  • Tách biệt dữ liệu – WAL – Archive (nếu có thể)

  • Tối ưu memory, autovacuum

  • Luôn kiểm tra log sau khi reload/restart

=============================
Website không chứa bất kỳ quảng cáo nào, mọi đóng góp để duy trì phát triển cho website (donation) xin vui lòng gửi về STK 90.2142.8888 - Ngân hàng Vietcombank Thăng Long - TRAN VAN BINH
=============================
Nếu bạn không muốn bị AI thay thế và tiết kiệm 3-5 NĂM trên con đường trở thành DBA chuyên nghiệp hay làm chủ Database thì hãy đăng ký ngay KHOÁ HỌC ORACLE DATABASE A-Z ENTERPRISE, được Coaching trực tiếp từ tôi với toàn bộ bí kíp thực chiến, thủ tục, quy trình của gần 20 năm kinh nghiệm (mà bạn sẽ KHÔNG THỂ tìm kiếm trên Internet/Google) từ đó giúp bạn dễ dàng quản trị mọi hệ thống Core tại Việt Nam và trên thế giới, đỗ OCP.
- CÁCH ĐĂNG KÝ: Gõ (.) hoặc để lại số điện thoại hoặc inbox https://m.me/tranvanbinh.vn hoặc Hotline/Zalo 090.29.12.888
- Chi tiết tham khảo:
https://bit.ly/oaz_w
=============================
2 khóa học online qua video giúp bạn nhanh chóng có những kiến thức nền tảng về Linux, Oracle, học mọi nơi, chỉ cần có Internet/4G:
- Oracle cơ bản: https://bit.ly/admin_1200
- Linux: https://bit.ly/linux_1200
=============================
KẾT NỐI VỚI CHUYÊN GIA TRẦN VĂN BÌNH:
📧 Mail: binhoracle@gmail.com
☎️ Mobile/Zalo: 0902912888
👨 Facebook: https://www.facebook.com/BinhOracleMaster
👨 Inbox Messenger: https://m.me/101036604657441 (profile)
👨 Fanpage: https://www.facebook.com/tranvanbinh.vn
👨 Inbox Fanpage: https://m.me/tranvanbinh.vn
👨👩 Group FB: https://www.facebook.com/groups/DBAVietNam
👨 Website: https://www.tranvanbinh.vn
👨 Blogger: https://tranvanbinhmaster.blogspot.com
🎬 Youtube: https://www.youtube.com/@binhguru
👨 Tiktok: https://www.tiktok.com/@binhguru
👨 Linkin: https://www.linkedin.com/in/binhoracle
👨 Twitter: https://twitter.com/binhguru
👨 Podcast: https://www.podbean.com/pu/pbblog-eskre-5f82d6
👨 Địa chỉ: Tòa nhà Sun Square - 21 Lê Đức Thọ - Phường Mỹ Đình 1 - Quận Nam Từ Liêm - TP.Hà Nội

=============================
AI, trí tuệ nhân tạo, artificial intelligence, machine learning, deep learning, LLM, ChatGPT, DeepSeek, Grok, oracle tutorial, học oracle database, Tự học Oracle, Tài liệu Oracle 12c tiếng Việt, Hướng dẫn sử dụng Oracle Database, Oracle SQL cơ bản, Oracle SQL là gì, Khóa học Oracle Hà Nội, Học chứng chỉ Oracle ở đầu, Khóa học Oracle online,sql tutorial, khóa học pl/sql tutorial, học dba, học dba ở việt nam, khóa học dba, khóa học dba sql, tài liệu học dba oracle, Khóa học Oracle online, học oracle sql, học oracle ở đâu tphcm, học oracle bắt đầu từ đâu, học oracle ở hà nội, oracle database tutorial, oracle database 12c, oracle database là gì, oracle database 11g, oracle download, oracle database 19c, oracle dba tutorial, oracle tunning, sql tunning , oracle 12c, oracle multitenant, Container Databases (CDB), Pluggable Databases (PDB), oracle cloud, oracle security, oracle fga, audit_trail,oracle RAC, ASM, oracle dataguard, oracle goldengate, mview, oracle exadata, oracle oca, oracle ocp, oracle ocm , oracle weblogic, postgresql tutorial, mysql tutorial, mariadb tutorial, ms sql server tutorial, nosql, mongodb tutorial, oci, cloud, middleware tutorial, hoc solaris tutorial, hoc linux tutorial, hoc aix tutorial, unix tutorial, securecrt, xshell, mobaxterm, putty

ĐỌC NHIỀU

Trần Văn Bình - Oracle Database Master