我有一个执行时间很长的脚本。Apache 正在使用 php_mod。
我在浏览器中启动该进程(打开 URL)。我关闭浏览器,但该进程仍在运行。
如何找到 apache 进程并停止它(linux os)
答案1
如何找到 apache 进程并停止它(linux os)
如果你知道你的 ip,找到 apache 进程 PID:
netstat -anp | grep 10.1.1.1 | grep \:80
tcp 0 0 127.0.0.1:80 10.1.1.1:48125 ESTABLISHED 7191/apache2
然后杀死它:
kill 7191