There are several methods to restart iis. The most common method is to expand the IIS node directly in the IIS server management control tree, select the computer on which the IIS service needs to be restarted, and right-click the computer, select "all tasks"> "restart IIS". In fact, there are other methods to restart iis. I will introduce them below.
In WINDOWS, When IIS provides WEB Services, the website cannot be opened due to excessive access. Restarting IIS is the best option.
1. Interface operations
Choose Control Panel> Administrative Tools> services ". Right-click "IIS Admin Service" and choose "restart" to bring up the "Stop Other Services" window. Click "yes ".
2. Net command operations
Click Start> Run and Enter cmd to open the command window;
Enter net stop iisadmin/y and press enter to stop IIS;
Enter net start iisadmin and press enter to start IIS;
Enter net start w3svc and press enter to enter the WEB service.
3. IISReset command operation
Click Start> Run and enter iisreset.
4. Restart through "IIS manager"
Expand the IIS node in the IIS server management control tree, select the computer that needs to restart the IIS service, right-click the computer, and choose "all tasks"> "restart IIS ".
5. Restart the IIS server and choose "start"> "run"> "cmd" (the related operation commands are listed below ):
Iisreset/RESTART start
Iisreset/start iis (if stopped)
Iisreset/stop iis (if started)
Iisreset/REBOOT restart your computer
Iisreset/REBOOTonERROR restart your computer if you fail to stop IIS
Iisreset/NOFORCE does not need to force IIS to stop
Iisreset/TIMEOUT: X after X seconds, IIS is forcibly stopped unless the/NOFORCE parameter gives. Content comes from
It is the most convenient to use. Of course, you can also run: iisreset/start in CMD.