what is the defalt password for username root? and how do u change password? for example
Try stopping the mysql daemon
/etc/init.d/mysql stop
Run
mysqld_safe –skip-grant-tables &
Enter as root
mysql -u root -p
To change root password
mysql client – mysql -u root
and write
use mysql
update user set password=PASSWORD(”NEW-ROOT-PASSWORD”) where User=’root’;
where do u put or start this? do u put it in usermane or something? sorry im not a computer export just a newb