Configure Apache + Php + MySQL environment under Mac

Source: Internet
Author: User
Tags php download phpmyadmin

Mavericks with the previous OSX like the apache2.2.24 and php5.4.17, but by default, does not open the terminal

sudo apachectl start

When you enter localhost in the browser, the Apache standard it works! should appear.
Open PHP below to modify Apache configuration file

sudo vim/etc/apache2/httpd.conf

Found it
#LoadModule php5_module libexec/apache2/libphp5.so, get rid of the front #
The default www folder is very inconvenient, or changed to develop in the home more handy, modified Apache configuration
, or the file above

#将引号中的目录修改为自己的目录DocumentRoot "/library/webserver/documents" ... #将引号中的目录修改为和上面一样的目录 <directory "/library/ Webserver/documents ">

Create a file index.php in your own directory, write

<?php phpinfo ();?>

To access localhost in the browser, you should display the PHP info page

Installation and configuration of MySQL and phpMyAdmin

To the MySQL official web download the latest MySQL version http://dev.mysql.com/downloads/mysql/, there are two options for installation package and source code, convenient to download the installation package directly, and then install it. For ease of operation, you can add an alias for MySQL:

Alias Mysql=/usr/local/mysql/bin/mysqlalias Mysqladmin=/usr/local/mysql/bin/mysqladmin

Then set the password

Mysqladmin-uroot Password "password"

If you want to be more convenient, you can use phpMyAdmin for graphical operations,
http://www.phpmyadmin.net/home_page/downloads.php Download the latest version, then unzip it into your custom folder, rename it to phpMyAdmin, and then access it in the browser localhost/ phpMyAdmin, log in with root and the password just now, you are done!

Configure Apache + Php + MySQL environment under Mac

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.