HTTP The service is starting or stopping. Please t

2019-06-16 16:45发布

I used following command to stop the HTTP service

net stop http /y 

And I got following error message:

The service is starting or stopping. Please try again later.

Now the HTTP service is in a in-between state. Its neither stopped nor starting. What should i do?

I read some similar issues but they are not helping.

Can't stop IIS in windows 7

2条回答
霸刀☆藐视天下
2楼-- · 2019-06-16 17:25

You should be able to kill it via the Task Manager.

Right-click on taskbar -> Start Task Manager Go to Process tab If you can find the service under the Processes tab:

Right click and select "End Process" If you don't see it under Processes (or don't know which is the process for the service you want to kill),

While on the Processes tab

Check "Show processes from all users" in the lower left Then "View" menu and choose "Select Columns" Check "PID" and hit OK Go to the services tab to find the PID of the service you want to kill Go back to Processes tab and Right-click -> End Processstrong text

Copied the answer from the https://superuser.com/questions/489949/force-windows-7-service-to-stop
and it worked for me.

查看更多
做个烂人
3楼-- · 2019-06-16 17:35

There are probably some processes that have open handles to \Device\Http\*.

You need close these handles or processes (e.g. in Process Explorer) to let the HTTP service stop.

查看更多
登录 后发表回答