Tag Archives: MySQL
How to reset MySQL root password
To reset the MySQL root password, do the following: USE DATABASE mysql; SET PASSWORD FOR root@localhost=PASSWORD(‘yournewpassword’); FLUSH PRIVILEGES; And voila! You have changed your password. PS: If you have a “problem” with beeing able to login to MySQL without using … Continue reading
Fix for the “Out of memory! Callback called exit.” error in Request Tracker (RT)
When RT is upgraded, users can experience WSOD(White Screen Of Death), all the log will say is: “Out of memory! Callback called exit.”. Not so informative eh? The solution is pretty simple, run this query in the database: “ALTER TABLE … Continue reading