Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IIS on Windows 10. Server Error 503

I have Windows 10 and I want to run IIS. I have activeted all features for it, as you can see here. Then I type "localhost" in the browser and I take

"HTTP Error 503. The service is unavailable."

In some forums they say to control the log HTTP Error file, so I do, but it is empty.

Then I go to the ISS manager to see for configurations.

How can I resolve this "Il server è configurato per l'uso dell'autenticazione pass-through con un account predefinito per accedere al percorso fisico specificato. Tuttavia, Gestione IIS non può verificare se l'account predefinito ha l'accesso. Verificare che l'identità del pool di applicazioni abbia l'accesso in lettura al percorso fisico. Se questo server è aggiunto a un dominio e l'identità del pool di applicazioni è NetworkService o LocalSystem, verificare che '< dominio>\< nome_computer>$' abbia l'accesso in lettura al percorso fisico, quindi riprovare queste impostazioni."?

I understand that I have to verify if the identity of the App pool has the reading access to the physical path. Please help me. Thank you.

like image 553
Giulia Scalaberni Avatar asked Jan 03 '17 16:01

Giulia Scalaberni


People also ask

How do I fix the 503 service unavailable in IIS?

In IIS, go to the Application Pools under the Server, then find the correct Application Pool for your web site, and click on it. On the Advanced Settings menu to the right, select Identity and change it and enter new user and password. Click on your Application Pool again, and select Recycle to restart it.

What causes a 503 error in IIS?

The 503 response from the IIS machine, Service Unavailable, is the result of repeated application crashes. Since the w3wp.exe worker process, created by IIS to execute a web application, is crashing frequently, the respective IIS application pool is turned off.

What does error HTTP 503 mean?

The HyperText Transfer Protocol (HTTP) 503 Service Unavailable server error response code indicates that the server is not ready to handle the request. Common causes are a server that is down for maintenance or that is overloaded.


2 Answers

With IIS, the error message "HTTP Error 503. The service is unavailable." typically means the site itself is running but the application pool associated with the site is stopped. Check the application pool and start it if is stopped.

If you see the application pool stopping again after you request the page, check your Event Viewer for error entries explaining why it stopped the pool.

like image 86
Babak Naffas Avatar answered Oct 11 '22 08:10

Babak Naffas


Just update the credentials in Application pool. You can update this by going to IIS manager=>Application Pools=> your pool name=>Right click then Advance Settings =>Identity=> custom and update the username and password that may help.

like image 22
Venkatesh Chunchu Avatar answered Oct 11 '22 09:10

Venkatesh Chunchu