MySQL Forums
Forum List  »  Security

Re: HOW CAN I SECURE MYSQL SYSTEMFILES ON WINDOW
Posted by: KimSeong Loh
Date: April 24, 2005 09:24PM

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.

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: HOW CAN I SECURE MYSQL SYSTEMFILES ON WINDOW
2493
April 24, 2005 09:24PM


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.