Windows AppServ 环境下 PHP 的相关操作

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 的相关操作)