Re: HOW CAN I SECURE MYSQL SYSTEMFILES ON WINDOW
You have disable TCPIP, make sure you use the named-pipe to connect.
Also, this
update user set password='hello' where user='root'
would have corrupt the password entry, you will no longer be able to connect as root, you should have used the password function to has the password like this.
update user set password=password('hello') where user='root'
Better check the documentation on how to reset the password.
Subject
Views
Written By
Posted
3956
April 08, 2005 06:56AM
2511
April 10, 2005 06:37PM
2608
April 16, 2005 09:46PM
Re: HOW CAN I SECURE MYSQL SYSTEMFILES ON WINDOW
2570
April 24, 2005 09:24PM
2460
April 12, 2005 07:52AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.