web application not provision to one WFE

Hi,

We have 3 WFE.  i have created web application, this web application provisioned on 2 WFE and not being provisioned at 3rd WFE.

Now this site is in production, pls guide how i can provision / create web application on 3rd WFE.

August 28th, 2015 7:38am

 

I think only way you can do it now is to either delete web application, and recreate it using powershell (if using UI increase app pool time out value following the link http://www.sharepointgeoff.com/a-solution-to-web-applications-not-being-provisioned-on-the-sharepoint-web-front-end-servers/) or remove that server from the farm and try to join it again to the farm so that timer service reprovisions it again.

Edited my answer since Trevor gave more convincing

Free Windows Admin Tool Kit Click here and download it now
August 28th, 2015 11:21am

On the problem server, stop the Microsoft SharePoint Foundation Web Application service, then start it. You may want to do this from the SharePoint Management Shell:

$si = Get-SPServiceInstance -Server ProblemServer | ?{$_.TypeName -match "Web Application"}
$si.Status = "Offline"
$si.Update()

$si.Status = "Online"
$si.Update() #this may take awhile

August 28th, 2015 11:38am

Hi,

i run above commands but nothing happen, even nothing written on powershell console.  i replaced problemserver with my serverhostname.

pls guide

thx

Free Windows Admin Tool Kit Click here and download it now
August 31st, 2015 7:33am

Hi Trevor,

any suggestions pls 

thx


September 1st, 2015 1:39am

Can you expand on "nothing written on powershell console"? If you run the first line of that command, then simply type in $si, do you see anything?
Free Windows Admin Tool Kit Click here and download it now
September 1st, 2015 10:54am

Hi,

below is screenshot.


after running following command

 

$si = Get-SPServiceInstance -Server ProblemServer | ?{$_.TypeName -match "Web Application"}
$si.Status = "Offline"
$si.Update()

when check at CA under SharePoint Foundation Web Application status show Error. then run 

$si.Status = "Online"
$si.Update()

service status at CA updated to start.

how about running old command 

stsadm -o provisionservice -action stop -servicetype spwebservice
stsadm -o provisionservice -action start -servicetype spwebservice

pls advise.

thx

September 2nd, 2015 1:22am

Hi,

any suggestions.

thx

Free Windows Admin Tool Kit Click here and download it now
September 11th, 2015 1:53am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics