hello all
i have some problem with the wamp server i have to change the password of the mysql server on the WAMP server from where i can change that.
Thanks
Hi,
Setting up mysql password is one of the essential tasks. By default root user is MySQL admin account. Please note that the Linux / UNIX login root account for your operating system and MySQL root are different. They are separate and nothing to do with each other (indeed some admin removes root account and setup admin as mysql super user)
Change password for user tom:
mysql> update user set password=PASSWORD("NEW-PASSWORD-HERE") where User='tom';
Click on the tray icon with your left button, choose MySQL->my.ini, password should be below [client] section. Change it, save the file and restart services.