Win2012 R2 IIS8.5+PHP(FastCGI)+MySQL运行环境搭建教程
准备篇
一、环境说明:
操作系统:windows server 2012 r2
php版本:php 5.5.8
mysql版本:mysql5.6.15
二、相关软件下载:
1、php下载地址:
http://windows.php.net/downloads/releases/php-5.5.8-nts-win32-vc11-x86.zip
2、mysql下载地址:
http://cdn.mysql.com/downloads/mysqlinstaller/mysql-installer-community-5.6.15.0.msi
3、visual c++ redistributable for visual studio 2012 update 4(x64)下载地址(安装php需要此插件):
4、visual c++ redistributable for visual studio 2012 update 4(x86)下载地址(安装php需要此插件):
5、microsoft visual c++ 2010 可再发行组件包 (x86)下载地址(安装mysql需要此插件):
http://download.microsoft.com/download/5/b/c/5bc5dbb3-652d-4dce-b14a-475ab85eef6e/vcredist_x86.exe
6、microsoft url 重写模块 2.0下载地址(iis8.5伪静态需要此插件):
安装篇
一、安装iis8.5
服务器管理器-添加角色和功能
下一步
选择:基于角色或基于功能的安装
下一步
选择:从服务器池中选择服务器
下一步
选择:web服务器(iis)
添加功能
下一步
下一步
确保cgi被选中,其他的角色服务根据需要选择,如果不知道如何选择,建议选择全部功能。
下一步
安装
正在安装中
显示安装成功,点关闭。
可以看到角色和服务器组中已经有了iis
点开始按钮,打开ie浏览器,输入会看到下面的界面
iis8.5已经安装完成。
二、安装php
1、安装visual c++ redistributable for visual studio 2012 update 4(x86)
双击vcredist_x86.exe
安装
正在安装
安装完成,关闭
2、安装visual c++ redistributable for visual studio 2012 update 4(x64)
双击vcredist_x64.exe
按照上一步的操作默认安装即可
安装完成后,点关闭
3、安装php-5.5.8-nts-win32-vc11-x86.zip
解压php-5.5.8-nts-win32-vc11-x86.zip文件
重命名文件夹为php,把php文件夹拷贝到c盘根目录
打开c:\php
复制php.ini-production为php.ini
用记事本打开php.ini
做如下修改:
extension_dir = "c:\php\ext" #设置php模块路径
date.timezone = prc #设置时区为中国时区
register_globals = on #开启get数据调用
short_open_tag = on #php支持短标签
cgi.force_redirect = 0 #开启以cgi方式运行php
fastcgi.impersonate = 1;
cgi.rfc2616_headers = 1
以下php扩展模块,根据需要选择开启,取消前面的分号为开始相应扩展模块
extension=php_curl.dll
extension=php_gd2.dll
extension=php_mbstring.dll
extension=php_exif.dll
extension=php_mysql.dll
extension=php_mysqli.dll
extension=php_sockets.dll
extension=php_xmlrpc.dll
extension=php_pdo_mysql.dll
系统运维 温馨提醒:qihang01原创内容©版权所有,转载请注明出处及原文链接
最后,保存退出
4、配置iis支持php
打开:控制面板-系统和安全-管理工具-internet information services(iis)管理器
双击左边“起始页”下面的计算机名称
找到中间的iis部分,打开“处理程序映射”
点右边的“添加模块映射”
请求路径:*.php
模块:fastcgimodule
可执行文件(可选):c:\php\php-cgi.exe
名称:fastcgi
最后,确定
点“是”
双击左边“起始页”下面的计算机名称
找到中间的iis部分,打开“fastcgi设置”
右键选中:c:\php\php-cgi.exe然后选择编辑
监视对文件所做的更改:c:\php\php.ini
环境变量,点旁边的"..."
点“添加”
name:php_fcgi_max_requests
value:1000
确定
确定
双击左边“起始页”下面的计算机名称
找到中间的iis部分,打开“默认文档”
点右边的“添加”
名称:index.php
确定
可以看到默认文档中已经有了index.php
选择右边操作下面“上移”选项,把index.php移到最上边
5、测试php程序是否正常运行
打开:
c:\inetpub\wwwroot
新建一个index.php文件
内容如下:
<?php
phpinfo();
?>
最后,保存退出
在浏览器里面打开
出现下面的界面,说php程序可以正常运行。
6、开启zend opcache,加速php执行效率
用记事本打开c:\php\php.ini文件, 在最底部增加以下代码
[zend opcache]
zend_extension = "c:\php\ext\php_opcache.dll"
opcache.memory_consumption=1024
opcache.optimization_level=1
opcache.interned_strings_buffer=8
opcache.max_accelerated_files=4096
opcache.revalidate_freq=60
opcache.fast_shutdown=1
opcache.enable=1
opcache.enable_cli=1
最后,保存退出
在浏览器里面打开,可以看到zend opcache配置选项
三、安装mysql
双击打开mysql-installer-community-5.6.15.0.msi
选择第一项install mysql products(安装mysql)
选中“i accept the license terms”(我接受许可条款),点next
选中“skip the check for update (not recommended)”(跳过检查更新),点next
选中“custom”(自定义安装)
installation path(安装路径):c:\program files\mysql\
data path(数据库存放路径):c:\programdata\mysql\mysql server 5.6\
next
确保“mysql server 5.6.15”被选中,点next(其他的组件可以选择安装)
这里全部选中,安装所有组件
execute (执行)
选中“我已阅读并接受许可条款”
点安装
完成
execute (执行)
next
execute (执行)
系统运维 温馨提醒:qihang01原创内容©版权所有,转载请注明出处及原文链接
next
next
config type(配置类型):
developer machine(开发服务器)
server machine(普通服务器)
dedicated machine(专用服务器)
这里选择第二项:server machine(普通服务器)
勾选“enable tcp/ip networking”(开启tcp网络端口)
port number(端口):3306
勾选“open firewall port for network access“(打开防火墙端口网络访问)
next
mysql root password:输入密码
repeat password:重复输入密码
设置好之后,点next
windows server name(windows服务名):mysql56
勾选:“start the mysql server at system startup“(在系统启动时启动mysql服务器)
next
next
next
点finish(完成)
关闭此窗口
打开mysql安装路径
c:\program files\mysql\mysql server 5.6
复制my-default.ini为my.ini
进入c:\programdata\microsoft\windows\start menu\programs\mysql\mysql server 5.6目录
打开mysql server 5.6 command line client
输入安装时候的mysql root账号密码,回车,登录到mysql控制台
exit(退出)
mysql安装完成
四、配置iis8.5支持伪静态
双击安装microsoft url 重写模块rewrite_x64_zh-cn.msi
安装
正在安装
完成
在:控制面板\系统和安全\管理工具\internet information services (iis)管理器中可以看到”url重写“
在:网站根目录下新建文件web.config,添加伪静态规则代码即可实现网站静态化
至此,windows server 2012 r2 iis8.5+php(fastcgi)+mysql环境搭建教程完成。
推荐阅读
-
Win2008 R2 IIS7.5+PHP5(FastCGI)+MySQL5环境搭建教程
-
Windows Server 2019 IIS10.0+PHP(FastCGI)+MySQL环境搭建教程
-
Win2008 R2 IIS7.5+PHP5(FastCGI)+MySQL5环境搭建教程_MySQL
-
Win2012 R2 IIS8.5+PHP(FastCGI)+MySQL运行环境搭建教程
-
Win2008 R2 IIS7.5+PHP5(FastCGI)+MySQL5环境搭建教程_MySQL
-
云主机搭建php+mysql运行环境教程(护卫神 PHP套件)
-
Win2008 R2 IIS7.5+PHP5(FastCGI)+MySQL5环境搭建教程
-
iis6搭建php运行环境mysql连接问题_PHP教程
-
非集成环境的php运行环境(Apache配置、Mysql)搭建安装图文教程_PHP
-
非集成环境的php运行环境(Apache配置、Mysql)搭建安装图文教程_PHP