mysql dump problem ?

UndeaD

Verified User
Joined
Apr 2, 2005
Messages
9
[root@615215 mysql]# mysql -u da_admin -p genius_forum < genius_forum.sql
Enter password:
ERROR 1045: Access denied for user: 'da_admin@localhost' (Using password: YES)
[root@615215 mysql]#

:S da_admin password ??

[root@615215 mysql]# mysql -u da_admin -p genius_forum < genius_forum.sql
Enter password:
ERROR 1045: Access denied for user: 'root@localhost' (Using password: YES)
[root@615215 mysql]#

mysql dump problem ?
 
Try something like this instead:

Code:
mysqldump -uda_admin -pDBPASSWORD genius_forum < genius_forum.sql
 
mysql -u da_admin -p genius_forum < genius_forum.sql

:) No Problem.. Thank you
 
May I ask what the problem was if the same command that you were using previously now works?

Password issue?
 
Back
Top