Skip to main content

Posts

Showing posts with the label mysql

:: backup all mysql databases

:: what is please take a look this :: backing up all mysql databases used mysqldump command $ mysqldump --all-databases -u root -p | gzip -9 > db_all.sql.gz Enter password: :: restoring all mysql databases $ tar -xzf db_all.sql.gz $ mysql -u root -p < db_all.sql Enter password: :: links + googlelinux + netadmintools