一,下载
http://nginx.org/,打开官网,点击download
选择下载稳定版
二,解压
1,解压到硬盘某个目录
2,由于80端口被占用,于是我要修改conf目录下的nginx.conf文件
查看端口是否被占用
netstat -ano|findstr 0.0.0.0:80
netstat -ano|findstr “80”
我这里查看80端口已被占用,于是修改配置文件
查看配置文件是否配置正确的命令
D:\Config\nginx-1.24.0>nginx -t
nginx: the configuration file D:\Config\nginx-1.24.0/conf/nginx.conf syntax is ok
nginx: configuration file D:\Config\nginx-1.24.0/conf/nginx.conf test is successful
三,启动Nginx
方法1,命令行启动
start nginx
方法2,双击nginx.exe
黑框一闪而过,即启动成功
PS:我把端口设置成了87,启动成功了,但是访问localhost:87没有用,最后才改的8087重新启动后,居然就能访问了
关闭命令:
1,我们可以直接去任务管理器中找到nginx.exe关闭
2,也可以命令关闭
nginx -s stop
版权归原作者 xun-ming 所有, 如有侵权,请联系我们删除。