rh-penguin
30th January 2007, 16:11
hi,
Im doing the: How To Set Up A Ubuntu/Debian LAMP Server(Im using debian)
About half way down is the MYSQL Section.
Creating users to use MySQL and Changing Root Password
By default mysql creates user as root and runs with no passport. You might need to change the root password.
To change Root Password
mysql -u root
mysql> USE mysql;
mysql> UPDATE user SET Password=PASSWORD('new-password') WHERE user='root';
mysql> FLUSH PRIVILEGES;
On the line:mysql> UPDATE user SET Password=PASSWORD('new-password') WHEREWould i put:
mysql> UPDATE user SET Password=dondude4482('new-password') WHERE
Im doing the: How To Set Up A Ubuntu/Debian LAMP Server(Im using debian)
About half way down is the MYSQL Section.
Creating users to use MySQL and Changing Root Password
By default mysql creates user as root and runs with no passport. You might need to change the root password.
To change Root Password
mysql -u root
mysql> USE mysql;
mysql> UPDATE user SET Password=PASSWORD('new-password') WHERE user='root';
mysql> FLUSH PRIVILEGES;
On the line:mysql> UPDATE user SET Password=PASSWORD('new-password') WHEREWould i put:
mysql> UPDATE user SET Password=dondude4482('new-password') WHERE