美文网首页
Windows AppServ 环境下 PHP 的相关操作

Windows AppServ 环境下 PHP 的相关操作

作者: 一薄情人一 | 来源:发表于2018-11-10 11:37 被阅读0次

Dos 命令下查看 Apache 和 MySQL 是否启动

tasklist | find "http"      // 查看 Apache 是否启动
tasklist | find "mysql"     // 查看 MySQL 是否启动

Dos 命令下启动 Apache 和 MySQL 服务

net start apache24          // 启动 Apache 服务
net start mysql57           // 启动 MySQL 服务

Dos 命令下关闭 Apache 和 MySQL 服务

net stop apache24          // 关闭 Apache 服务
net stop mysql57           // 关闭 MySQL 服务

相关文章

网友评论

      本文标题:Windows AppServ 环境下 PHP 的相关操作

      本文链接:https://www.haomeiwen.com/subject/merzxqtx.html