/ Published in: MySQL
How to reset a root password in mysql with OS root user
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
#From bash #Stop mysql service $> service mysqld stop #Start mysql "for free". Seems dangerous :P $> mysql -uroot mysql> quit; $> service mysqld restart