MAMP - Existing Apache and PHP

I am very new to Mac OS as well as to MAMP.

So, Mac OS X comes preloaded with Apache web server, PHP, etc. I have a question regarding installing MAMP:

Will PHP, Apache, etc. installed with MAMP replace pre-loaded ones? Or will MAMP install a second instance of each of them?

Thank!

+3
source share
3 answers

MAMP is standalone and will run instead of the pre-installed Apache. You need to disable the Web Access feature in System Preferences to disable the built-in Apache server.

+2
source

, . MAMP . /Applications/MAMP, Apache .

+1

MAMP is self-sufficient. It does not replace Apache, Mysql or any other thing on the computer or any initial settings. It starts these services from its own folder with a different port number. The initial installation of Apache in the MAC OS will continue to work on the default port, i.e.

Original Apache installation will continue to work   localhost:80

Mamp will install the service on port port 8888, 8889 for apache, mysql. New Apache installation Apache will work on

localhost:8888

Removing these services from MAMP is easy, since removing the MAMP folder from applications

+1
source

All Articles