Forum Moderators: open
examplified @ example.com[~]# mysqldump --port 3306 -u save_User --password=save_Pass -h example.com --databases examplified_DB --add-drop-table > dbdump.sql
mysqldump: Got error: 1045: Access denied for user 'save_User'@'examplified.example.com' (using password: YES) when trying to connect
examplified @ example.com[~]# mysql -u save_User --password=save_Pass
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1997679 to server version: 4.1.21-standard-logType 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> use examplified_DB ;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -ADatabase changed
So please Help
Thanks
[edited by: tedster at 7:27 pm (utc) on July 7, 2007]
[edit reason] use example.com - it can never be owned [/edit]
examplified @ example.com[~]# mysqldump --port 3306 -u save_User --password=save_Pass -h example.com --databases examplified_DB --add-drop-table > dbdump.sql
mysqldump: Got error: 1045: Access denied for user 'save_User'@'examplified.example.com' (using password: YES) when trying to connect
sol :)
examplified @ example.com[~]# mysqldump --port 3306 -u save_User --password=save_Pass -h 127.0.0.1 --databases examplified_DB --add-drop-table > dbdump.sql
mysqldump: Got error: 1045: Access denied for user 'save_User'@'examplified.example.com' (using password: YES) when trying to connect
Just I changed the bold things and its working, I think only local host is allowed to connect to database.
:)
[edited by: tedster at 7:28 pm (utc) on July 7, 2007]
[edit reason] use example.com - it can never be owned [/edit]