MySQl Configuration Error After reinstall it -
when reinstall mysql database after uninstall it, got error when configuration:
error 1045
now, new directory here:
e:\program files (x86)\mysql\mysql server 5.5
and old directory this:
c:\program files (x86)\mysql\mysql server 5.5
i delete whole mysql folder on drive c , has error when want config! how can fix problem?
thanks advance.
you can follow method well:
menu>start>run>cmd
"c:\program files\mysql\mysql server 5.1\bin\mysqld.exe" --skip-grant-tables
let's window open , open new 1
menu>start>run>cmd "c:\program files\mysql\mysql server 5.1\bin\mysql.exe" -u root
you're connect mysql, have modified root account in date of mysql
mysql> use mysql;
mysql> update user set password=password('motdepasse') user="root";
mysql> flush privileges;
mysql> exit;
restart mysql command line client
that's
Comments
Post a Comment