Posts Tagged ‘mysql’

setup mysql password

Saturday, October 17th, 2009

here we go:


mysql --user=root
update mysql.user set Password=PASSWORD('your_new_root_password') where User='root';
flush privileges;
quit;