MySQL
Securing the connection between MySQL and MySQL Administrator using an SSH tunnelSecuring the connection between MySQL and MySQL Administrator using an SSH tunnel This is a description of how to set up a secure tunnel between your MySQL Server and a locally running MySQL Administrator using Putty. By creating a secure tunnel to your MySQL server using Putty, you can grant localhost access to powerful applications like MySQL Administrator while at the same time, make your server appear as if it isn't even there. In effect, make your MySQL server disappear from the outside world. Read more...How to perform a point in time restoration using ZRM for MySQLSubmitted by tkr (Contact Author) (Forums) on Thu, 2006-11-23 01:38. :: Linux | Backup | MySQL | MySQL
How to perform a point in time restoration using ZRM for MySQL ZRM for MySQL is a powerful, flexible and robust backup and recovery solution for MySQL databases for all storage engines. With ZRM for MySQL a Database Administrator can automate logical or raw backup to a local or remote disk. In this How To, we attempt to explain how to recover from an user error at any given point in time. Read more...How do I make my MySQL server use TCP connections instead of Unix sockets?Comment out the option skip-networking in the file my.cnf which typically lies under /etc or /etc/mysql. Then restart your MySQL server: /etc/rc.d/init.d/mysql restart or /etc/init.d/mysql restart With netstat -ta you can check if MySQL is reachable via TCP. Read more...How do I restore a MySQL database from an sql dump?If your MySQL user has a password: mysql -h localhost -u [MySQL user, e.g. root] -p[database password] [name of the database] < [name of your sql dump, e.g. sqldump.sql] Please note: there's no space between -p and the password! If there's no password: mysql -h localhost -u [MySQL user, e.g. root] [name of the database] < [name of your sql dump, e.g. sqldump.sql] Read more...How do I make an sql dump of a MySQL database on the command line?If your MySQL user has a password: mysqldump -h localhost -u [MySQL user, e.g. root] -p[database password] -c --add-drop-table --add-locks --all
--quick --lock-tables [name of the database] > sqldump.sql Please note: there's no space between -p and the password! If there's no password: mysqldump -h localhost -u [MySQL user, e.g. root] -c --add-drop-table --add-locks --all --quick --lock-tables [name of the database] > sqldump.sql Read more..."Facebook" is a registered trademark of Facebook, Inc. All rights reserved. |






Recent comments
1 day 9 hours ago
1 day 14 hours ago
3 days 11 hours ago
5 days 7 hours ago
6 days 10 hours ago
6 days 21 hours ago
1 week 12 hours ago
1 week 22 hours ago
1 week 1 day ago
1 week 1 day ago