博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
win7 php nginx 启动命令
阅读量:6588 次
发布时间:2019-06-24

本文共 662 字,大约阅读时间需要 2 分钟。

1 php 启动命令

@echo off  e:  cd E:/php-7.0.6/  echo "php is starting on port 9007, php_version is 7.0.6"  php-cgi -b 9007 -q exit

2 启动nginx

@echo off  e:  cd E:\nginx\  echo "nginx is starting on port 80"  start "" "nginx.exe"  exit

 3 停止nginx

@echo off  e:  cd e:\nginx  tasklist | findstr /i "nginx.exe"  echo "nginx is running, stopping..."  rem nginx -s stop  TASKKILL /F /IM nginx.exe /T  echo "stop ok"

 4 重启nginx

@echo off  e:  cd e:\nginx\tasklist | findstr /i "nginx.exe"  echo "nginx is running, stopping..."  rem nginx -s stop  TASKKILL /F /IM nginx.exe /T  echo "stop ok"  start "" "nginx.exe"  exit

 

转载于:https://www.cnblogs.com/jackspider/p/8458121.html

你可能感兴趣的文章
Ckeditor 的加载顺序
查看>>
java内存模型(netty权威指南)
查看>>
Fragment问题集
查看>>
NSNotificationCenter详解
查看>>
【javascript】浮点数运算问题分析及解决方法
查看>>
TQ2440实现触摸屏和qt图形 解决segmentation fault
查看>>
HBase的JavaAPI使用
查看>>
Debian GNU/kFreeBSD是什么
查看>>
使用base64:url 来定义背景图片url
查看>>
Oracle事务隔离级别
查看>>
PNG文件格式具体解释
查看>>
WebService注解
查看>>
7月目标 socket , 一致性哈希算法 ; mongodb分片; 分布式消息队列; 中间件的使用场景...
查看>>
cocos2dx 3.1从零学习(三)——Touch事件(回调,反向传值)
查看>>
GetParam(name)
查看>>
android PopupWindow实现从底部弹出或滑出选择菜单或窗口
查看>>
(面试必知)必知必会的冒泡排序和快速排序
查看>>
图解iPhone开发新手教程
查看>>
ext2磁盘布局
查看>>
23种设计模式(3):抽象工厂模式
查看>>