Việc sao lưu database PostgreSQL thường xuyên là điều cần thiết để đảm bảo bạn có thể khôi phục dữ liệu trong trường hợp xảy ra sự cố, chẳng hạn như lỗi phần cứng, lỗi phần mềm, xóa nhầm dữ liệu, hoặc tấn công bảo mật. Có nhiều phương pháp để sao lưu và restore dữ liệu nhưng cơ bản là 3 cách chính như sau:
- SQL dump
- File system level backup
- On-line backup
SQL Dump: sử dụng pg_dump để xuất ra file chứa các lệnh và dữ liệu để phục hồi lại database.
Backup dump: Login vào user postgres và sử chạy lệnh sau:
pg_dump: backup 1 database cụ thể được chỉ định
su postgres pg_dump dbname > outfile
#dbname là tên CSDL cần backup, dump
#outfile là tên file hoặc đường dẫn đến file output
pg_dump duongdb > /pgbackup/backup_file.sql
Lệnh trên sẽ backup CSDL duongdb thành file backup_file nằm trong đường dẫn /pgbackup
Backup thành tar file:
pg_dump -Ft mydb > db.tar pg_restore -d newdb db.tar
pg_dumpall: sử dụng để backup tất cả database trong cluster
pg_dumpall > outfile pg_dumpall > /pgbackup/all_db_backup_file.sql pg_dumpall --schema-only > output.sql pg_dumpall --roles-only > output.sql pg_dumpall --tablespaces-only > output.sql
Restore dump:
su postgres psql dbname < infile pg_restore -U postgres -d dvdrental /home/dvdrental.tar
# dbname là tên CSDL cần restore, chúng ta phải tạo CSDL trước, file dump chỉ có các lệnh sql tạo table, object mà thôi
#infile là file dump sql đã tạo ở bên trên.
Chúng ta cũng có thể thực hiện dump và restore trực tiếp từ 2 server cho nhau:
pg_dump -h host1 dbname | psql -h host2 dbname
# host1 dump sang host2 => dạng nhân bản database
Restore pg_dumpall: restore tất cả database được tạo ra bởi dumpall
psql -f infile postgres
Backup và restore database LỚN:
Nén file dump:
pg_dump dbname | gzip > filename.gz pg_dump duongdb | gzip > /pgbackup/backup_file.sql.gz
Restore:
createdb dbname gunzip -c filename.gz | psql dbname hoặc: cat filename.gz | gunzip | psql dbname
Chia nhỏ file dump:
pg_dump dbname | split -b 1m -filename Restore: createdb dbname cat filename* | psql dbname
File system level backup
Là backup dạng copy toàn bộ thư mục data và nén lại, phải tắt DB đi trước khi thực hiện thì DB mới restore được để đảm bảo toàn vẹn dữ liệu.
tar -cf /pgbackup/backup_all.tar /pgdata/15/data
Script Backup: có thẻ chạy trong crontab tự động
#!/bin/bash # Set variables for database connection PGUSER=your_username PGDATABASE=your_database_name # Set the path where you want to store the backup files BACKUP_DIR=/path/to/backup/directory # Get current date and time datestamp=$(date +'%Y-%m-%d') timestamp=$(date +'%H%M') # Execute pg_dump command to dump the database pg_dump -U "$PGUSER" -d "$PGDATABASE" > "$BACKUP_DIR/$PGDATABASE"_"$datestamp"_"$timestamp".sql
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
=============================
cở sở dữ liệu, cơ sở dữ liệu quốc gia, database, 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/21c/23c/23ai, 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, docker, k8s, micro service, hoc solaris tutorial, hoc linux tutorial, hoc aix tutorial, unix tutorial, securecrt, xshell, mobaxterm, putty