win下nginx+mysql+php安装

安装nginx
windows 版本 如何安装成服务?

  1. 下载nginx windows版本
  2. 下载微软的2个工具: instsrv.exe
  3. 运行命令
    instsrv Nginx c:\nginx\nginx.exe ,这样就安装了一个Nginx的服务
  4. 配置Nginx的运行参数
    可以直接将配置导入到注册表
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NGINX\Parameters]
    “Application”=“C:\nginx\nginx.exe”
    “AppParameters”=“”
    “AppDirectory”=“C:\nginx\”
    net stop nginx 停止服务 net start nginx开始服务
    你可以直接下载我打包的Nginx,里面包括了以上所需要的命令和配置

安装php 安装mysql
nginx是个不错的web服务器软件,下面介绍如何安装WNMP服务器套件环境。
1.安装mysql
这个可以下载安装程序来安装
2.安装PHP
修改对应PHP 的配置文件
extension_dir 指定到对应的目录
还有该load 的extension需去掉注释(至少mysql…)
cgi.fix_pathinfo=1
3.安装Nginx
将document_root 指定到对应目录
即修改root设置
root e:/www;
另外需将index.php 加入到index中
index index.html index.htm index.php;
找到“ ~ .php?$”,将这段的注释去掉
fastcgi_param SCRIPT_FILENAME e:/www$fastcgi_script_name;
4.以cgi模式运行php
C:/php/php-cgi.exe -b 127.0.0.1:9000 -c C:/php/php.ini
5.运行nginx
到nginx的安装目录,找到 nginx.exe,直接运行就是
net start [service(服务名称)]
停止命令:
net stop [service(服务名称)]

win下nginx+mysql+php安装

上一篇:能用存储过程的DBHelper类


下一篇:用户与 Oracle DB 交互详细过程