I’m responsible for a couple of SharePoint 2007 (MOSS) farms where all SharePoint servers showed the following error in the system event log:
Event Type: Error
Event Source: DCOM
Event Category: None
Event ID: 10016
Date: 1/17/2007
Time: 4:31:48 AM
User: <DOMAIN>\sa_adm
Computer: <SERVER>
Description:
The application-specific permission settings do not grant Local Activation permission for the COM Server application with CLSID
{61738644-F196-11D0-9953-00C04FD919C1}
to the user <DOMAIN>\sa_adm SID (S-1-5-21-162740987-2502514208-3469184634-1119). This security permission can be modified using the Component Services administrative tool.
For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
The error would show up at regular intervals in clusters (4-12 at roughly the same time) and there would be a few more with other usernames and other class id’s. I had two fully functional farms with 3 SharePoint servers each and a number of standalone development machines. They all exhibited similar behavior.
The error listed above is that the user running the Central Administration web application doesn’t have access to activate (instantiate) the IIS WAMREG admin Service object (search the registry for the CLSID).
Strangely enough I didn’t observe any functional errors in the farms as a result of these errors – nothing seemed amiss (plenty of stuff didn’t work but none directly related to this).
An important note here is that the service users used in the farm are all standard domain accounts and only given additional local rights by the SharePoint installer and Central Administration (The one exception is that “aspnet_regiis -ga IIS_WPG” was executed after SharePoint install and initial configuration).
The following procedure removes the errors from the event log without compromising the entire security setup (yes, assign administrative rights for the service users would do the trick too) and has been verified by Microsoft consulting services.
On each SharePoint server do the following:
- Click Start, Click Run, type “dcomcnfg” and click ok
- Expand Component Services / Computers / My Computer / DCOM Config
- Right click IIS WAMREG admin Service and choose Properties
- Click the Security tag
- Click Edit under Launch and Activation Permissions
- Click Add
- In the Select Users, Computers or Groups type computername\WSS_WPG and
computername\WSS_ADMIN_WPG - Click ok
- In the Permissions for UserName list, click to select the Allow check box
- Click Ok twice.
- Go back to the main Component Services window, right click the “netman” node and select Properties
- Click the security tab
- Click Edit under Activation Permissions
- Click Add on the Launch Permissons Dialog
- Enter “NETWORK SERVICE” in the edit box
- Click Ok
- Enable all the checkboxes for the NETWORK SERVICE
- Click Ok twice
- Finally, run “IISReset”
That should be it!
A little less event log errors to worry about – there are plenty left on a reasonable complex SharePoint farm…
As a side note: The above error also shows up in other applications as well – I’ve heard about it for exchange servers as well and more applications are probably affected. In that case you’ll need to search the registry for the actual DCOM application and assign the rights to another local group (or username as a last resort).
http://soerennielsen.wordpress.com/2007/04/16/fixing-those-pesky-dcom-event-log-error-10016-in-a-sharepoint-farm-environment/
'Solution Platform' 카테고리의 다른 글
HOW TO:Forms Based Authentication (FBA) on SharePoint 2010 (0) | 2011.06.27 |
---|---|
[펌]Hide Button from SharePoint Ribbon (0) | 2011.05.13 |
using Client Object model SharePoint 2010 (0) | 2010.12.24 |
SharePoint 2010 Document File Open Behavior (0) | 2010.12.09 |
Farm에 설치된 대체 언어 활성화시키기 (0) | 2010.11.22 |