Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Upgrading to MAMP 3: “The installation cannot be continued!”

I’m trying to upgrade my current MAMP installation to the latest version (3.0.7.3). I have quit the current version and tried to run the installation package.

Each time, the installation have failed: “The installation cannot be continued!”

And I’m served with the following instruction: “Please quit MAMP / MAMP PRO as well as all servers and deactivate the Dynamic DNS Services before you restart the installation process.”

I’ve tried to run the installation while connected to the internet and not connected, to no avail. I don’t quite know what this Dynamic DNS Service is about.

Any advice or suggestion to troubleshoot this issue?

Many thanks,

P.

like image 601
Parneix Avatar asked Dec 05 '14 14:12

Parneix


People also ask

Why is MAMP not working?

The issue is usually due to another MySQL service running on the same port. The easiest solution is to kill all MySQL processes and restart MAMP. On macOS, you can do this using the Activity Monitor, which you'll find in the Utilities folder on your computer.

How do I install free MAMP on my Mac?

To install MAMP on your Mac go to: https://mamp.info and click on the Free download button. Next, click on the Apple logo to start the download. Once the download has completed, go to your Downloads folder and double-click on the package file to start the installation. Follow the instructions to install MAMP.

Is MAMP for Mac free?

MAMP is a free, local server environment that can be installed under macOS and Windows with just a few clicks.


3 Answers

In my case, I needed to kill all mysqld and httpd processes before it would install. Open terminal and run the following commands:

sudo killall mysqld
sudo killall httpd
like image 97
TheRealWebGuy Avatar answered Jan 03 '23 22:01

TheRealWebGuy


I encountered the same issue. The solution was to stop the default mysql server which is included in OS X:

Open Application -> Utilities -> Activity Monitor

Search for mysqld in the process list and stop it. The MAMP PRO installation will work now.

like image 42
Rick Avatar answered Jan 03 '23 23:01

Rick


I started mamp again after the install failed and found that apache was still marked as running. I stopped apache through the mamp interface, closed mamp, and then ran the installer again and it worked.

like image 32
Mike Grace Avatar answered Jan 03 '23 23:01

Mike Grace