PS C:\Program Files\MySQL\MySQL Server 5.6\bin> ./mysqld --init-file='C:\Program Files\MySQL\MySQL Server 5.6\bin\mysql-init.txt'
***********************************mysql-init.txt***************************************
update user set password='password' where user='root'; flush privileges;
****************************************************************************************
PS C:\Program Files\MySQL\MySQL Server 5.6\bin> ./mysql --user=root -p
Enter password: ********
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
I can access the server with --safe --skip-grant-tables enabled, but that does not do me any good... I cannot figure
out what I am doing wrong and I have checked in a few different places. All lead back to the same thing.
the procedure that I am using.
Does anyone know where I am going wrong?
***********************************mysql-init.txt***************************************
update user set password='password' where user='root'; flush privileges;
****************************************************************************************
PS C:\Program Files\MySQL\MySQL Server 5.6\bin> ./mysql --user=root -p
Enter password: ********
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
I can access the server with --safe --skip-grant-tables enabled, but that does not do me any good... I cannot figure
out what I am doing wrong and I have checked in a few different places. All lead back to the same thing.
the procedure that I am using.
Does anyone know where I am going wrong?