vote up 0 vote down star

I'm new to mac os x. In the Windows XP world, there are packages available, like easyPHP, wampserver, uniformserver, that enable you to have a local webserver complete with php, mysql configured via an automatic installer. Really handy.

I need the same on my new mac. I know mac os x comes with a local webserver. Is this already with php, mysql preinstalled?

I'd like to have you guys advise on the easiest way to have this local lamp so that i can continue developing on this nice and shiny machine.

thanks!

flag

Isn't the L in LAMP linux? :P – Dana Apr 3 at 15:51
The 'L' is pretty much irrelevant: most php code (the 'P') doesn't care about the OS as long the PHP interpreter functions with the right web server and db. – Joel Coehoorn Apr 3 at 15:54
... though occasionally you will need to pull something off of the file system. – Joel Coehoorn Apr 3 at 15:55
Unix -> BSD -> FreeBSD -> NeXTSTEP -> Mac OS X. Both Linux and OS X are essentially Unix, and at the command line they're practically identical. The only major difference is that OS X's support for the X window system is horrid, but this doesn't affect web development really. – Chris Lutz Apr 3 at 15:58
@Chris unless you wanna use the ln command... in which case source and target are reversed :) – Jason Coco Apr 3 at 16:04

4 Answers

vote up 2 vote down check

Question : What means LAMP ?

Answer : Linux Apache MySQL PHP

Q: and if this was running on a Mac ?

A : try MAMP

link|flag
Great call. MAMP was exactly what i was searching for. it even allows to use the 80 port so the built-in apache does not get in the way. – pixeline Apr 4 at 12:56
vote up 1 vote down

OS X comes with php and apache installed already. It doesn't have mysql installed by default, but you can easily download the Mac OS X version from the mysql website in either the tarball version or a package version.

link|flag
As a side note, OS X also comes with Perl, Python, and Ruby if you want to do web development with another scripting language. It doesn't come with a C compiler or a make program, but if you install the (free) developer's tools you'll get GCC and GNU Make, which you'll need to install MySQL. – Chris Lutz Apr 3 at 15:57
It comes with a full rails setup too (in 10.5)... and I'd say it does "come with" the compiler, it's just not installed by default :) – Jason Coco Apr 3 at 16:01
vote up 0 vote down

Mac OS X is -- essentially -- Linux.

Mac OS X already contains Apache. Turn on file sharing and you'll turn on Apache.

You'll need to download and install MySQL for Mac OS X. http://dev.mysql.com/downloads/mysql/5.1.html

You'll need to edit the httpd.conf to enable mod_apache.

link|flag

Your Answer

Get an OpenID
or

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