Dump the code

Backup and restore Database

2 articles
Automating MySQL backup to AWS S3 serves a dual purpose of enhancing efficiency and fortifying data resilience. The automation process eliminates the need for manual backups, ensuring a consistent and reliable schedule for data protection. By leve...
8 months ago
3 min read
Restoring or import a MySQL database from a saved copy can be done using the 'mysql' command-line tool. Here's the basic syntax:mysql -u [username] -p[password] [database_name] < [filename.sql] '-u': Specifies the MySQL user. '-p': Pr...
8 months ago
4 min read