Install and Configure mysqlbackup in Mysql Enterprise Edition
Install and Configure mysqlbackup in Mysql Enterprise Edition When you are using MySQL Enterprise Edition ,You can check online utility mysqlbackup for taking online backup for the MySQL backup. In this blog, We will discuss about installation and configuration of the mysqlbackup. 1) Download the mysqlbackup rpm from the oracle.support.com 2) Install mysqlbackup on the server using below command dpkg -i mysql-commercial-backup_*.deb 3) Create backup admin user for taking backup. CREATE USER 'backupadmin'@'localhost' IDENTIFIED BY '**************'; GRANT SELECT ON *.* TO 'backupadmin'@'localhost'; GRANT BACKUP_ADMIN ON *.* TO 'backupadmin'@'localhost'; GRANT SELECT ON performance_schema.variables_info TO 'backupadmin'@'localhost'; GRANT SELECT ON performance_schema.log_status TO 'backupadmin'@'localhost'; GRANT RELOAD ON *.* TO 'backupadmin'@'localhost'; GRANT CREATE...