Tag Archives: server

Take a dump – MYSQL

Real quick, this is how you do a mysql dump. You’ll need your password of course. It’s a great way to backup your database. # mysqldump -u USERNAME -h localhost -p YOUR_DB_NAME | gzip -9 > YOUR_DB_NAME.sql.gz

Posted in Solutions to Problems | Tagged , | Leave a comment