Link to home
Start Free TrialLog in
Avatar of AXISHK
AXISHK

asked on

Login mysql with other user

After installing WAMP server and start the MySQL, it always ask for root password.

How to configure the MySQL console such that always user name and password is asked ?

How to test whether a new created user can access a particular database through the console ?

Tks
Avatar of Kimputer
Kimputer

use the commandline
mysql -u user -p (enter)

Now you can type the password of the user called "user".
To use the command line on the same machine as the MySQL server, a user must be created with a 'localhost' connection.
ASKER CERTIFIED SOLUTION
Avatar of Dave Baldwin
Dave Baldwin
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of AXISHK

ASKER

Tks
You're welcome.