hello-
I'm attempting to dump an entire MySQL database to an identical server for backup and devlelopment purposes using the following:
mysqldump db_name | mysql -h otherserver.com db_name
On the target server:
-there is a database created with the same name as the one on the source server
-there is an entry in the host table with full privileges for "%"
-there is an entry in the user table with the source IP as the host, and full privileges
I still get "host not allowed to connect" messages, however, when I try to do the mysql dump?
Am I missing any entries in the tables on the target server?
thanks. knelson.