Problem: Unable to write to event log - code base is written-and-compiled in 'C# ASP.NET-4.0 framework' on Windows Server 2008 SP2 (IIS7) -- porgrammatic logging into Windows Event-Log is done using 'log4net'.

Other details are: As a tech-refresh initiative, We have transferred our web-tier from a windows server 2003 (IIS-6) to windows server 2008 SP2 (IIS-7). We are using log4net (version 1.2) for event logging through code. There is a also a custom-windows-service which also uses the same code and is very much able to write into the Event-Log on new windows server 2008 SP2 (IIS-7) without any config or code changes, however the web-tier application is unable to do so. In the earlier setup, of web-tier on Win-2003, an 'aspnet' user account existed and the web-tier (with code changes) has been migrated to new windows server 2008 SP2 (IIS-7).

What I tried or analyzed so far is as follows:

  1. Computer\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Appropriate-Application -> Right click select permissions and give the ASPNET account full control --- do NOT tell me this suggestion. There is no-point in giving fULL rights to 'ASPNET' user account as this account is NO more present in Windows-Server-2008. Nevertheless for the heck of it, I have given FULL-rights all users on the ...Services\Eventlog\Appropriate-Application -- still NO resolution.
  2. Also do NOT redirect me to this simialr stackoverflow link <log4net permission issue to write to application event log when the user is not in admin group in Windows 2008 R2 and IIS 7>... it MAY look similar to my problem... however the difference is that we do NOT have any explicit user-acount created for this web-tier application. As told in point-01, it used to run on the DEFAULT 'ASPNET' account and the code has not been changed.
  3. Do NOT suggest any code changes -- this OPTION IS RULED OUT for various reasons. Only web-config-file changes or other windows/IIS-level settings change is allowed. So obviously, please do NOT suggest this another stackoverflow link which talks about code POSSIBLE changes to resolve this problem. <Writing to an event log in ASP.NET on Windows Server 2008 IIS7>.
  4. The web-config files have been already compared between the versions of 'Win-2003' and 'Win-2008' and there are NO relevant differences.

This seems to be more of some 'permissions' or 'settings' issue -- but not able to figure it out as of today.

link|improve this question

60% accept rate
1  
If you can't make code changes, and can't even post code that is or isn't working, then you're on the wrong site. This is a PROGRAMMING site. You want a server admin site. – Frank White Nov 3 '11 at 17:20
Thanks 'SixHouse' for your suggestion and spending your time on this. As noted below, the issue has been now fixed. – MukeshAnAlsoRan Nov 4 '11 at 8:57
feedback

2 Answers

up vote 2 down vote accepted

What is the identity of the application pool of the web application running as? My guess is that the app pool is running under Network Service which is the default for Windows 2008.

The identity of an application pool is the name of the service account under which the application pool's worker process runs. By default, application pools operate under the Network Service user account, which has low-level user rights. You can configure application pools to run under one of the built-in user accounts in the Windows ServerĀ® 2008 operating system. For example, you can specify the Local System user account, which has higher-level user rights than either the Network Service or Local Service built-in user accounts.

This account is a least privileged machine account with limited permissions. An application that runs using this account has restricted access to the event log

You will have to make some changes. It can't just work without a configuration change on IIS/Registry.

link|improve this answer
Thanks 'kd7'...for your inputs as it gave me the direction. Issue has been now fixed. I went to the relevant application-folder in IIS-7 (on Win-Server-2008.. actually the OS does not matter here... only IIS-7 settings matter) and clicked on 'Advanced Settings' (on right hand side in IIS7) and under 'Process-Model' changed the 'identity' to 'Local system'. It got working. – MukeshAnAlsoRan Nov 4 '11 at 8:51
feedback

In sytem registry under this path *Computer\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\application* .check your system has a folder with log event 'sourcename' or your 'application name'.if not create folder with two key values one is (default) of type REG_SZ and another key is EventMessageFile of type REG_EXPAND_SZ with value C:\Windows\Microsoft.NET\Framework\v4.0.30319\EventLogMessages.dll .

try this hope it works for u also

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.