Re: mysql40 and FBSD 4.9
Dima Dorfman <[email protected]>
| Newsgroups | gmane.os.freebsd.devel.database |
|---|---|
| Message-ID | <[email protected]> |
Stefan Moro <[email protected]> wrote: > Afetr the > installation I was trying to set the mysql root-users password with > mysqladmin -u root password 'new-password' > > when i tried that I got the following message: > > mysqladmin: connect to server at 'localhost' failed > error: 'Access denied for user: 'root@localhost' (Using password: NO)' "Using password: NO" means that the client tried to authenticate without sending a password. Try: mysqladmin -u root -p password 'new-password' Note the added -p flag, which should cause the client to prompt you for the current root password. Hope this helps, Dima. _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-database To unsubscribe, send any mail to "[email protected]"