Table of Contents
After installation, you can start and stop php-fpm through the following commands
安装Nginx
Nginx + PHP-FPM配置
安装MySQL
Memcache
Redis
设置别名
安装其他项目支持
安装Oh My Zsh
Home Backend Development PHP Tutorial Build php environment under mac

Build php environment under mac

Mar 27, 2018 pm 01:28 PM
php build environment

This article mainly shares with you how to build a php environment under mac. Recently, the working environment has been switched to Mac, so taking OS X Yosemite (10.10.1) as an example, record the process from scratch Start the process of installing the LNMP environment under Mac

Make sure that xcode is installed on the system, and then use a one-line command to install the dependency management tool Homebrew.

1

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

Copy after login

After that, you can use

1

brew install FORMULA

Copy after login

to install the required dependencies. The naming of

brew (meaning brewing) is very interesting. All materials/instruments used in the brewing process are used. The nouns correspond to the following concepts:

  • Formula ( Recipe) package definition, essentially an rb file

  • Keg (bucket) installation path of the package

  • Cellar (cellar) all The root directory of the package (bucket)

  • Tap (faucet) source of the package

  • Bottle (bottle) compiled and packaged package

The final compiled and installed program is a barrel of brewed wine

For more detailed information, please refer to Homebrew’s official Cookbook

So it is common to use Homebrew The process is:

  1. Add a program source (add a faucet) brew tap homebrew/php

  2. Update Program source brew update

  3. ## Installation package (brew according to the recipe)

    brew install git

  4. View configuration

    brew config You can see that the package is installed by default under /usr/local/Cellar (the wine barrel is placed in the cellar)

Install PHP5.6 (FPM method)

First join several official Homebrew software sources

1

2

3

brew tap homebrew/dupes

brew tap homebrew/versions

brew tap homebrew/php

Copy after login
If PHP is installed with the default configuration, the

mod_php module will be compiled and It only runs in the Apache environment. In order to use Nginx, you need to compile php-fpm and disable apache. This is mainly achieved through the parameters --without-fpm --without-apache. The complete installation instructions are

1

2

3

4

5

6

7

8

9

10

11

12

brew install php56 \

--build-from-source \

--without-snmp \

--without-apache \

--with-fpm \

--with-intl \

--with-homebrew-curl \

--with-homebrew-libxslt \

--with-homebrew-openssl \

--with-imap \

--with-mysql \

--with-tidy

Copy after login
Since OSX already comes with a PHP environment, you need to modify the system path, run the version installed by brew first, and add: ## to

~/.bashrc #<div class="code" style="position:relative; padding:0px; margin:0px;"><pre style="font-family:'Courier New';margin:5px 8px;padding:5px;" class="brush:php;toolbar:false;">export PATH=&quot;/usr/local/bin:/usr/local/sbin:$PATH&quot;</pre><div class="contentsignin">Copy after login</div></div> If you want to install a new php extension, you can install it directly without recompiling php every time. All extensions can be seen through

1

brew search php56

Copy after login

. The following are the extensions I need and can support them. Phalcon framework:

1

brew install php56-memcache php56-memcached php56-mongo  php56-phalcon php56-redis php56-xdebug --build-from-source

Copy after login

Loading and starting of PHP-FPM

After installation, you can start and stop php-fpm through the following commands

1

2

php-fpm -D

killall php-fpm

Copy after login

同时可以将php-fpm加入开机启动

1

2

ln -sfv /usr/local/opt/php56/*.plist ~/Library/LaunchAgents

launchctl load ~/Library/LaunchAgents/homebrew.mxcl.php56.plist

Copy after login

安装Nginx

1

brew install nginx

Copy after login

安装完毕后可以通过

1

2

nginx

nginx -s quit

Copy after login

启动和关闭,同时也支持重载配置文件等操作

1

nginx -s reload|reopen|stop|quit

Copy after login

nginx安装后默认监听8080端口,可以访问http://localhost:8080查看状态。如果要想监听80端口需要root权限,运行

1

2

sudo chown root:wheel /usr/local/Cellar/nginx/1.6.2/bin/nginx

sudo chmod u+s /usr/local/Cellar/nginx/1.6.2/bin/nginx

Copy after login

并使用root权限启动

1

sudo nginx

Copy after login

开机启动

1

2

ln -sfv /usr/local/opt/nginx/*.plist ~/Library/LaunchAgents

launchctl load ~/Library/LaunchAgents/homebrew.mxcl.nginx.plist

Copy after login

Nginx + PHP-FPM配置

Nginx一般都会运行多个域名,因此这里参考了@fish的方法,按Ubuntu的文件夹结构来存放Nginx的配置文件

1

2

3

4

5

mkdir -p /usr/local/var/logs/nginx

mkdir -p /usr/local/etc/nginx/sites-available

mkdir -p /usr/local/etc/nginx/sites-enabled

mkdir -p /usr/local/etc/nginx/conf.d

mkdir -p /usr/local/etc/nginx/ssl

Copy after login

编辑Nginx全局配置

1

vim /usr/local/etc/nginx/nginx.conf

Copy after login

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

worker_processes  1;

error_log   /usr/local/var/logs/nginx/error.log debug;

pid        /usr/local/var/run/nginx.pid;

 

events {

    worker_connections  256;

}

 

 

http {    include       mime.types;

    default_type  application/octet-stream;

 

    log_format main '$remote_addr - $remote_user [$time_local] '        '"$request" $status $body_bytes_sent '        '"$http_referer" "$http_user_agent" '        '"$http_x_forwarded_for" $host $request_time $upstream_response_time $scheme '        '$cookie_evalogin';

 

    access_log  /usr/local/var/logs/access.log  main;

 

    sendfile        on;

    keepalive_timeout  65;

    port_in_redirect off;    include /usr/local/etc/nginx/sites-enabled/*;

}

Copy after login

这样一来首先可以把一些可复用配置独立出来放在/usr/local/etc/nginx/conf.d下,比如fastcgi的设置就可以独立出来

1

vim /usr/local/etc/nginx/conf.d/php-fpm

Copy after login

内容为

1

2

3

4

5

6

location ~ \.php$ {

    try_files                   $uri = 404;

    fastcgi_pass                127.0.0.1:9000;

    fastcgi_index               index.php;

    fastcgi_intercept_errors    on;    include /usr/local/etc/nginx/fastcgi.conf;

}

Copy after login

然后/usr/local/etc/nginx/sites-enabled目录下可以一个文件对应一个域名的配置,比如web服务器目录是/opt/htdocs

1

vim /usr/local/etc/nginx/sites-enabled/default

Copy after login

1

2

3

4

5

6

7

8

9

server {

    listen       80;

    server_name  localhost;

    root         /opt/htdocs/;

 

    location / {

        index  index.html index.htm index.php;        include     /usr/local/etc/nginx/conf.d/php-fpm;

    }

}

Copy after login

此时启动了php-fpm并且启动了Nginx后,就可以通过http://localhost来运行php程序了

安装MySQL

1

brew install mysql

Copy after login

可以通过

1

2

mysql.server start

mysql.server stop

Copy after login

来启动/停止,启动后默认应为空密码,可以通过mysqladmin设置一个密码

1

mysqladmin -uroot password "mypassword"

Copy after login

但是在操作的时候出现了空密码无法登入的情况,最终只能通过mysqld_safe来设置

1

2

3

4

sudo mysqld_safe --skip-grant-tables

mysql -u root

mysql> UPDATE mysql.user SET Password=PASSWORD('mypassword') WHERE User='root';

mysql> FLUSH PRIVILEGES;

Copy after login

最后将MySQL加入开机启动

1

cp /usr/local/Cellar/mysql/5.6.22/homebrew.mxcl.mysql.plist ~/Library/LaunchAgents/

Copy after login

Memcache

1

brew install memcached

Copy after login

启动/停止指令

1

2

memcached -d

killall memcached

Copy after login

加入开机启动

1

cp /usr/local/Cellar/memcached/1.4.20/homebrew.mxcl.memcached.plist ~/Library/LaunchAgents/

Copy after login

Redis

1

brew install redis

Copy after login

Redis默认配置文件不允许以Deamon方式运行,因此需要先修改配置文件

1

vim /usr/local/etc/redis.conf

Copy after login

将daemonize修改为yes,然后载入配置文件即可实现后台进程启动

1

redis-server /usr/local/etc/redis.conf

Copy after login

加入开机启动

1

cp /usr/local/Cellar/redis/2.8.19/homebrew.mxcl.redis.plist ~/Library/LaunchAgents/

Copy after login

设置别名

最后可以对所有服务的启动停止设置别名方便操作

1

vim ~/.bash_profile

Copy after login

加入

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

alias nginx.start='launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.nginx.plist'

alias nginx.stop='launchctl unload -w ~/Library/LaunchAgents/homebrew.mxcl.nginx.plist'

alias nginx.restart='nginx.stop && nginx.start'

alias php-fpm.start="launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.php55.plist"

alias php-fpm.stop="launchctl unload -w ~/Library/LaunchAgents/homebrew.mxcl.php55.plist"

alias php-fpm.restart='php-fpm.stop && php-fpm.start'

alias mysql.start="launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist"

alias mysql.stop="launchctl unload -w ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist"

alias mysql.restart='mysql.stop && mysql.start'

alias redis.start="launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.redis.plist"

alias redis.stop="launchctl unload -w ~/Library/LaunchAgents/homebrew.mxcl.redis.plist"

alias redis.restart='redis.stop && redis.start'

alias memcached.start="launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.memcached.plist"

alias memcached.stop="launchctl unload -w ~/Library/LaunchAgents/homebrew.mxcl.memcached.plist"

alias memcached.restart='memcached.stop && memcached.start'

Copy after login

安装其他项目支持

1

brew install composer node

Copy after login

安装Oh My Zsh

1

2

3

brew install zsh-completions

chsh -s /usr/local/bin/zsh

vim ~/.zshenv

Copy after login

加入内容

1

export PATH=/usr/local/bin:$PATH

Copy after login

然后

1

vim ~/.zshrc

Copy after login

加入内容

1

2

3

fpath=(/usr/local/share/zsh-completions $fpath)

autoload -Uz compinit

compinit -u

Copy after login

最后运行

1

rm -f ~/.zcompdump; compinit

Copy after login

查看正在使用的shell

1

dscl localhost -read Local/Default/Users/$USER UserShell

Copy after login

安装Oh My Zsh

1

wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh

Copy after login

               

The above is the detailed content of Build php environment under mac. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1662
14
PHP Tutorial
1261
29
C# Tutorial
1234
24
How do you parse and process HTML/XML in PHP? How do you parse and process HTML/XML in PHP? Feb 07, 2025 am 11:57 AM

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

PHP Program to Count Vowels in a String PHP Program to Count Vowels in a String Feb 07, 2025 pm 12:12 PM

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? Apr 03, 2025 am 12:03 AM

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

PHP and Python: Comparing Two Popular Programming Languages PHP and Python: Comparing Two Popular Programming Languages Apr 14, 2025 am 12:13 AM

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

PHP in Action: Real-World Examples and Applications PHP in Action: Real-World Examples and Applications Apr 14, 2025 am 12:19 AM

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

PHP: A Key Language for Web Development PHP: A Key Language for Web Development Apr 13, 2025 am 12:08 AM

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

See all articles