概述
Mac OSX 10.9搭建nginx+mysql+php-fpm环境
我的电脑配置
系统版本:10.9.1
安装homebrew
homebrew是mac下非常好用的包管理器,会自动安装相关的依赖包,将你从繁琐的软件依赖安装中解放出来。 安装homebrew也非常简单,只要在终端中输入:
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
homebrew的常用命令:
- brew update #更新可安装包的最新信息,建议每次安装前都运行下
- brew search pkg_name #搜索相关的包信息
- brew install pkg_name #安装包
安装nginx
安装
brew search nginx
brew install nginx
配置文件(已存在 /usr/local/etc/nginx/nginx.conf)
cd /usr/local/etc/nginx/ vim nginx.conf
现在我把成功的配置文件贴出来
user hugo staff(这里修成为跟文件一样的用户 /Users/hugo/Documents/PHP文件);
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
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"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
server {
listen 8080;
server_name localhost;
root /Users/hugo/Documents/PHP(这个是我自己定义的文件路径,index.php所在);
index index.html index.htm index.php;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
#root html;
#root /Users/hugo/Documents/PHP;
#index index.html index.htm index.php;
# $uri /index.php?$query_string;
}
#location ~ .php$ {
# fastcgi_pass 127.0.0.1:9000;
#fastcgi_index index.php;
#fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
#include fastcgi_params;
#}
#location ~ (/.){
# deny all;
#}
location ~ .*.php$
{
include fastcgi.conf;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
expires off;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /Users/hugo/Documents/PHP;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ .php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ .php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
安装php-fpm
Mac OSX 10.9的系统自带了PHP、php-fpm,省去了安装php-fpm的麻烦。 这里需要简单地修改下php-fpm的配置,否则运行php-fpm会报错。
sudo cp /private/etc/php-fpm.conf.default /private/etc/php-fpm.conf vim /private/etc/php-fpm.conf
修改php-fpm.conf文件中的error_log项,默认该项被注释掉,这里需要去注释并且修改为error_log = /usr/local/var/log/php-fpm.log。如果不修改该值,运行php-fpm的时候会提示log文件输出路径不存在的错误。
另外,这个很重要的修改:把配置文件的user和group都修改跟nginx的用户一样
- user = hugo
- group = staff
如果保存不了修改后的php-fpm.conf的文件,那就在进入编辑之前的命令前加入sudo,就是sudo vim
安装mysql
安装
brew install mysql
常用命令
- mysql.server start #启动mysql服务
- mysql.server stop #关闭mysql服务
配置
在终端运行mysql_secure_installation脚本,该脚本会一步步提示你设置一系列安全性相关的参数,包括:设置root密码,关闭匿名访问,不允许root用户远程访问,移除test数据库。当然运行该脚本前记得先启动mysql服务。
测试nginx服务
在之前nginx配置文件default.conf中设置的root项对应的文件夹下创建测试文件index.php:
<?php phpinfo(); ?>
然后:
- 启动nginx服务,sudo nginx;
- 修改配置文件,重启nginx服务,sudo nginx -s reload
- 启动php服务,sudo php-fpm(重启这个服务的命令找了很久:SystemStarter php54-fpm restart,如果不行,可以重启电脑。因为在这里当你开启这个服务后再去修改user和group的信息,这时候就一定要重启,不然访问index.php就报错file not found);
- 在浏览器地址栏中输入localhost:8080,如果配置正确地话,应该能看到PHP相关信息的页面。
附加:
可能会用到的命令:
- ps aux|grep nginx(看服务的进程)
- ls -ld 文件地址 (查看这个地址的用户和用户组的信息)
最后
以上就是碧蓝冬瓜为你收集整理的Mac OSX 10.9搭建nginx+mysql+php-fpm环境的全部内容,希望文章能够帮你解决Mac OSX 10.9搭建nginx+mysql+php-fpm环境所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复