Work Process in SharePoint Server 2016

Work Process list so as to get work process improvement ideas

Worker Process (w3wp.exe) handles the web requests that are sent to IIS web server  or application pool.

Name: SharePoint Administration
Service Name: SPAdminV4
Description: Performs administrative tasks for SharePoint
Path to Executable: C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\16\BIN\WSSADMIN.EXE

Name: SharePoint Insights
Service Name: SPInsights
Description: Microsoft SharePoint Insights is a hybrid solution that helps SharePoint administrators manage their infrastructure more efficiently. After it is configured properly, it will upload data to Microsoft and give administrators access to different reports in Office 365.
Path to Executable: C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\16\BIN\OfficeDataLoader\Microsoft.Office.BigData.DataLoader.exe
 
Name: SharePoint Search Host Controller
Service Name: SPSearchHostController
Description: Performs host deployment and management for SharePoint search components.
Path to Executable: C:\Program Files\Microsoft Office Servers\16.0\Search\HostController\hostcontrollerservice.exe

Name: SharePoint Server Search 16
Service Name: OSearch16
Description: Administers and crawls content from repositories.
Path to Executable: C:\Program Files\Microsoft Office Servers\16.0\Bin\mssearch.exe

Name: SharePoint Timer Service
Service Name: SPTimerV4
Description: Sends notifications and performs scheduled tasks for SharePoint
Path to Executable: C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\16\BIN\OWSTIMER.EXE

Name: SharePoint Tracing Service
Service Name: SPTraceV4
Description: Manages trace output
Path to Executable: C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\16\BIN\wsstracing.exe

Name: SharePoint User Code Host
Service Name: SPUserCodeV4
Description: Executes user code in a sandbox
Path to Executable: C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\16\UserCode\SPUCHostService.exe
 
Name: SharePoint VSS Writer
Service Name: SPWriterV4
Description: SharePoint VSS Writer
Path to Executable: C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\16\BIN\SPWRITER.EXE

 Name: Microsoft Project Server Calculation Service 2016
Service Name: ProjectCalcService16
Description: Microsoft Project Server Calculation Service manages the lifecycle and the communication of the processes that handle modifications to projects.
Path to Executable: C:\Program Files\Microsoft Office Servers\16.0\Bin\Microsoft.Office.Project.Server.Calculation.exe
 
Name: Microsoft Project Server Events Service 2016
Service Name: ProjectEventService16
Description: Microsoft Project Server Events Service executes events triggered by changes to entities on the ProjectServer.
Path to Executable: C:\Program Files\Microsoft Office Servers\16.0\Bin\Microsoft.Office.Project.Server.Eventing.exe
 
Name: Microsoft Project Server Queue Service 2016
Service Name: ProjectQueueService16
Description: Microsoft Project Server Queue Service executes project related jobs asynchronously. Example queue jobs: Save project, publish project, submit timesheet.
Path to Executable: C:\Program Files\Microsoft Office Servers\16.0\Bin\Microsoft.Office.Project.Server.Queuing.exe

[siteorigin_widget class=”WordAds_Sidebar_Widget”][/siteorigin_widget]
[siteorigin_widget class=”WordAds_Sidebar_Widget”][/siteorigin_widget]
[siteorigin_widget class=”SiteOrigin_Widget_Image_Widget”][/siteorigin_widget]
[siteorigin_widget class=”SiteOrigin_Widget_Image_Widget”][/siteorigin_widget]
[siteorigin_widget class=”SiteOrigin_Widget_Image_Widget”][/siteorigin_widget]
[siteorigin_widget class=”SiteOrigin_Widget_Image_Widget”][/siteorigin_widget]

Sharepoint 2013 – 404 Not Found while accessing site collection from outside

Error :

I have a Sharepoint 2013 running on a Windows Server 2012. Following issue appeared:

I made a new Site-Collection as wiki. Everything (links,…) works fine on the server but when I want to access the wiki from outside (not localhost) the server runs in a 404 Not found error.

http://localhost/sites/wiki/Pages/Home.aspx - works fine(localhost)

http://10.38.0.15/sites/wiki/Pages/Home.aspx - doesn't work.

I checked the IIS settings, all servers are up and running. The log file has no errors in it.

Resolution :

The most common cause for this is that you don’t have the IIS host header configured correctly. The 404 will appear because you are hitting a different IIS web site and not the one you intended to.

If you go into IIS Manager and click on “Sites” in the right hand pane there will be a column called bindings and a column called ID.

IIS will check in the order of ID for the first site that matches. Make sure the default site is stopped. If you see bindings that look like the following:

ID 1: Bindings: *:80

ID 2: Bindings: http://www.yoursite.com:80

http://www.othersite.com will match ID 1. Any other site that doesn’t specify a port or https: will be directed to ID 2.

You need to ensure that the site you are trying to access matches your bindings. The “www.yoursite.com” is added to the site via “New Web Application” in SharePoint.

There is a field called Host: in Central Administration. This should match what you are typing from inside and outside the server.

If you need the site to respond to multiple names, you need to extend the web application.

Assuming you used the default of claims authentication, here are the instructions for that:

I am not sure if this is still required in Server 2012, but disabling the loopback check might also help, although this usually results in a 401, and repeated attempts to log in. Here are the instructions for that.