Windows之安装Nginx、PHP、mysql
程序员文章站
2024-02-15 15:31:58
...
说明
由于机器本身是Windows x64系统,所以选择了所有x64的软件;如果想选择x86也可以兼容;如果机器是x86的,那么只能选择x86的软件
下载地址
- nginx
- http://nginx.org/en/download.html
- 此处选择版本 nginx/Windows-1.9.4
- nginx-1.9.4.zip
- php非线程安全版
- http://windows.php.net/download
- 同时在页面的左侧下载相应的VC运行时,并安装
- 此处选择 PHP 5.6 VC11 x64 Non Thread Safe
- php-5.6.12-nts-Win32-VC11-x64.zip
- 此处选择 VC11 x64 - Visual C++ Redistributable for Visual Studio 2012 Update 4
- vcredist_x64.exe
- RunHiddenConsole
- http://redmine.lighttpd.net/attachments/660/RunHiddenConsole.zip
- RunHiddenConsole.zip
- http://redmine.lighttpd.net/attachments/660/RunHiddenConsole.zip
- mysql-installer-community
- http://www.mysql.com/downloads/installer/
- 此处选择 **
- mysql-installer-community-5.6.26.0.msi
- 需要安装.net framework 4.0.30319,已经安装有的,跳过此步) 下载地址:http://download.microsoft.com/download/9/5/A/95A9616B-7A37-4AF6-BC36-D6EA96C8DAAE/dotNetFx40_Full_x86_x64.exe
并运行 - 其他需要在CheckRequirements中需要的组件,manual的根据提示自己安装解决,auto的双击OR等待软件自己下载然后安装。(提示:mysql网站都有下载)
- root密码为 a123456 - 可以修改这个设置,但是在下面的连接数据库的测试代码中也要相应修改
- 另外server设置为开机自动启动
安装配置 nginx、php
安装 nginx
- 选择软件安装目录为 c:\zjc - 这个目录可以更改
- 解压 nginx-1.9.4.zip 到 c:\zjc\server\nginx
- 以 c:\zjc\www 作为网站根目录
- 修改配置文件 c:\zjc\server\nginx\conf\nginx.conf
- location / 节点下面的 root 修改为 root c:\zjc\www
- 在 c:\zjc\www 目录下创建测试网页 index.html
- 双击运行 :\zjc\server\nginx\nginx.exe, 浏览器打开 http://127.0.0.1,可以看到刚才创建的网页
- 可以停止 nginx
cd c:\zjc\server\nginx
nginx.exe -s stop
安装 php
- 解压 php-5.6.12-nts-Win32-VC11-x64.zip 到 c:\zjc\server\php
- 把 c:\zjc\server\php\php.ini-development 改名为 php.ini
安装 vcredist_x64.exe
点击安装就好了
安装 RunHiddenConsole
- 把 RunHiddenConsole.zip 包中的 RunHiddenConsole.exe 解压到 c:\zjc\server\utils 目录
配置 nginx 、php
修改 c:\zjc\server\nginx\conf\nginx.conf
修改
#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;
#}
为
location ~ \.php$ {
# root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME c:/zjc/www$fastcgi_script_name;
include fastcgi_params;
}
启动停止脚本
-
c:\zjc\svr_start.bat
内容为
cd server\php
..\utils\RunHiddenConsole.exe php-cgi.exe -b 127.0.0.1:9000 -c c:/zjc/server/php/php.ini
cd ..\..
cd server\nginx
..\utils\RunHiddenConsole.exe nginx.exe
cd ..\..
-
c:\zjc\svr_stop.bat
内容为
taskkill /F /IM nginx.exe > nultaskkill /F /IM php-cgi.exe > nul
测试 nginx 、 php
创建文件 c:\zjc\www\index.php , 内容为
echo phpinfo();
?>
访问 http://127.0.0.1/index.php , 可以看到 php 相关的信息就对了
安装配置 mysql
- 运行 dotNetFx40_Full_x86_x64.exe
- 运行 mysql-installer-community-5.6.26.0.msi
- 选择 Server Only
- 修改 c:\zjc\server\php\php.ini 来开启 php 对 mysql 的支持
extension_dir = "ext"
extension=php_mysqli.dll
测试 nginx 、php、mysql
新建网页
c:\zjc\www\check_mysql.php
内容为
$con = mysqli_connect("localhost", "root", "a123456");
if(!$con) {
die('Could not connect: ' . mysqli_error());
} else {
echo"Database connected successfully";
}
mysqli_close($con);
重启服务器
$ c:$ cd c:\zjc
$ svr_stop.bat
$ svr_start.bat
访问网页 http://127.0.0.1/check_mysql.php
可以看到连接成功的消息就对了
版权声明:本文为博主原创文章,未经博主允许不得转载。
以上就介绍了Windows之安装Nginx、PHP、mysql,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。
相关文章
相关视频
下一篇: PHP 二维数组排序 便利~
推荐阅读
-
Windows之安装Nginx、PHP、mysql
-
RedHat上安装apache+gd1.8.3+php4+tomcat+sybase+oracle+mysql黄金攻略
-
windows下nginx + php配置
-
Docker for Windows安装与Linux+PHP开发环境搭建(一)
-
全面解析Windows下安装 mysql5.7的方法
-
php入门之连接mysql数据库的一个类_PHP
-
WINXp,windows2000下配置apache2.0.52+php5.0.2+mysql4.0
-
手把手教你在Ubuntu上安装Apache、MySql和PHP_PHP教程
-
php nginx 在windows系统停搭建记录
-
ubuntu下配置nginx+php+mysql详解,ubuntunginx_PHP教程