Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi in Mamp Pro I accidentally removed the root account, so I now cannot use mysql to create new databases and all other operations.

This is the error I get when startng mysql via mamp pro:

Checking MySQL databases failed Error message: /Applications/MAMP/Library/bin/mysqlcheck: Got error: 1044: Access denied for user 'root'@'localhost' to database 'mysql' when selecting the database

I have tried to reset to factory settings but that hasn't helped.

Basically in the users overview in Phpmyadmin, I just get a yellow box saying "No privileges".

I also tried to uninstall Mamp Pro, but when I tick the uninstaller's checkboxes and hit uninstall, I get the following error:

Error The privileged action failed.

Help would be really appreciated since I cannot do any work like this.

share|improve this question

1 Answer

up vote 9 down vote accepted

MAMP evidently creates some configuration files that can't be wiped via the uninstaller. I was able to circumvent the The privileged action failed error and completely uninstall MAMP Pro using the following steps:

  1. Delete the appsolute directory from /Library/Application Support , which contains configuration files that are created upon MAMP Pro installation
  2. Delete the file hosts.mamp.bak in /etc, which is the MAMP hosts backup file
  3. Delete the MAMP directory from /Applications/MAMP
  4. Open the MAMP Pro Uninstaller, check all five options, and click to uninstall

This should completely wipe the existing MAMP/MAMP Pro installation and enable a clean, fresh install. You may need to restart your computer to get Apache running after re-installation.

share|improve this answer
1  
FYI, it is also possible to recreate the root user without starting over. You can start MySQL with a --init-file that grants permissions to the root user, eg: Restoring a deleted root user. – Stennie Aug 22 '12 at 2:06
I used CleanMyMac app in the end to completely remove Mamp. – drtanz Aug 22 '12 at 8:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.