posgresql backup/restore1. Backup DATE=`date +%Y%m%d-%H%M` BACK_DATA=xxapp-data-${DATE}.out # Set the name of the backup file here. Adding the date is to prevent duplication. docker exec pg-db pg_dumpall -U postgres > ${BACK_DATA} # pg-db is the docker name of the database 2. Recovery docker cp ${BACK_DATA} pg-db:/tmp docker exec pg-db psql -U postgres -f /tmp/${BACK_DATA} postgres mysql backup/restore1. Backup DATE=`date +%Y%m%d-%H%M` BACK_DATA=xxapp-data-${DATE}.sql # mysql-db is the docker name of the database, xxxpwd is the root user password, app-db is the name of the data to be backed up docker exec mysql-db mysqldump -uroot -pxxxpwd --databases app-db > ${BACK_DATA} 2. Restore the following ${BACK_DATA} to replace it with the actual generated file name docker cp ${BACK_DATA} mysql-db:/tmp docker exec -it mysql-db mysql -uroot -pxxxpwd mysql> source /tmp/${BACK_DATA}.sql mysql> \q Bye Replenish postgresql backs up all databases, mysql backs up a specific database. Summarize The above is the database backup (postgresql, mysql) in the docker environment introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
<<: MySQL index usage instructions (single-column index and multi-column index)
>>: Detailed explanation of type protection in TypeScript
The world-famous virtual machine software VMware-...
Table of contents 1. WordPress deployment 1. Prep...
Recently, I started upgrading my blog. In the proc...
1. Check whether port 80 is occupied. Generally, ...
Being a web designer is not easy. Not only do you...
Using abbreviations can help reduce the size of yo...
In HTML pages, we sometimes need to automatically ...
The network configuration of Host Only+NAT mode u...
Download opencv.zip Install the dependencies ahea...
<br />Words are the inevitable product of hu...
As the first article of this study note, we will ...
The HTML specification document introduces the cr...
The steps are as follows 1. Create a docker group...
Table of contents Process Communication Bidirecti...
Preface There are 4 types of operators in MySQL, ...