I am an IT-consultant, teaching individuals how to work securely on a computer, protect data with encryption tools and how to communicate securely with people over insecure networks. Contact me to make an appointment.
Thursday, March 4, 2010
How to change MySQL user password
mysql -u root -p
mysql> use mysql;
mysql> update user set password=PASSWORD("NEW-PASSWORD-HERE") where User='paul';