Search found 1 match

by CarlArnold
February 3rd, 2023, 5:52 pm
Forum: JetBackup cPanel
Topic: backup mysql database
Replies: 4
Views: 11296

Re: backup mysql database

You can create a job to backup a MySQL database using the following steps:

1. Create a script to make the MySQL dump:

mysqldump -u [user] -p[password] [database_name] > [backup_file].sql

Replace [user], [password], [database_name] and [backup_file] with the appropriate values.

2. Create a shell ...