Detailed explanation of psql database backup and recovery in docker

Detailed explanation of psql database backup and recovery in docker

1. Postgres database backup in Docker

Order:

docker exec it db_13 pg_dumpall -c -U mrp > mrp217

explain:

docker exec it [name of the image database in docker] pg_dumpall -c -U [user name] > [name of the database to be exported]

2. Postgres Database Backup

Order:

pg_dump --host xxxxx --port 5434 --username odoo > odoo217 mrp

explain:

pg_dump –host [address] –port [port] –username [database username] > [exported file] [database name]

3. Restore locally and restore to docker directly through the command line

psql -U odoo (user name) -h localhost -p 6543 (port mapped by docker) -d odoo (database name) -f /media/liang/_dde_data/mrp217

4. Before restoring the database in docker, delete the old database, create a new one, and then restore it (regular database updates)

docker exec -it db13 bash #Enter daocker
psql -U odoo (user name) -d postgres # Enter the psql database

After entering, perform database operations:
drop databse odoo; # delete the database
create database odoo; #Create a new database, exit dockers and then restore the database

4.1 Another recovery, mine is not applicable here

pg_dump -h localhost -p 5432 -U odoo -F c -b -v -f "/usr/20200214.backup" mrp in docker, function: back up from docker database to docker
docker cp db_mrp_sync:/usr/20200214.backup ./ outside docker, function: from docker to the server outside docker
scp xxxxxx:/home/xxx/20200214.backup D:\ Connect to the remote and import to the local location
pg_restore -d <database name> /path/to/your/file/mrp.sql -c -U <user name>

5. Import from the test server to the local

scp xxxx:/home/xxx/mrp217 D:\ Connect to the remote and import to the local location without shell tool installed
scp ip: the path of the backup file in the test server, the local path to be imported

The above is all the content compiled by the editor of 123WORDPRESS.COM. I hope it can help you.

You may also be interested in:
  • Database backup in docker environment (postgresql, mysql) example code
  • Docker container regularly backs up the database and sends it to the specified mailbox (design idea)

<<:  Linux tac command implementation example

>>:  Solve the problem of resetting the Mysql root user account password

Recommend

How to handle super large form examples with Vue+ElementUI

Recently, due to business adjustments in the comp...

How to configure Jupyter notebook in Docker container

Jupyter notebook is configured under the docker c...

Use of nginx custom variables and built-in predefined variables

Overview Nginx can use variables to simplify conf...

Two-hour introductory Docker tutorial

Table of contents 1.0 Introduction 2.0 Docker Ins...

A brief discussion on the characteristics of CSS float

This article introduces the characteristics of CS...

Detailed explanation of CSS line-height and height

Recently, when I was working on CSS interfaces, I...

Nginx cache files and dynamic files automatic balancing configuration script

nginx Nginx (engine x) is a high-performance HTTP...

Detailed explanation of the loop form item example in Vue

Sometimes we may encounter such a requirement, th...

Meta declaration annotation steps

Meta declaration annotation steps: 1. Sort out all...

SQL implementation of LeetCode (177. Nth highest salary)

[LeetCode] 177.Nth Highest Salary Write a SQL que...

Some conclusions on the design of portal website focus pictures

Focus images are a way of presenting content that ...

Example code for implementing equal width layout in multiple ways using CSS

The equal-width layout described in this article ...

Docker installation tomcat dubbo-admin instance skills

1. Download the tomcat image docker pull tomcat:8...