MySQl Configuration Error After reinstall it -


when reinstall mysql database after uninstall it, got error when configuration:

enter image description here 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:

  1. menu>start>run>cmd "c:\program files\mysql\mysql server 5.1\bin\mysqld.exe" --skip-grant-tables

  2. let's window open , open new 1 menu>start>run>cmd "c:\program files\mysql\mysql server 5.1\bin\mysql.exe" -u root

  3. 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;

  4. restart mysql command line client

that's


Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -