vote up 0 vote down star
1

Hi all. I've got a weird problem. It looks like if my IIS6 locked an application's web.config. If I try to edit it, Windows complains that the web.config is used by another process.

Using Process Explorer I can see that the file is owned by w3wp.exe. Removing the virtual directory and stopping the website wasn't useful at all.

Any idea (I cannot stop the whole server since a lot of sites are hosted in it)?

Thanks in advance

flag

80% accept rate
what about restarting the server at night? a downtime of a few minutes for a greater cause! – JohnIdol Apr 8 at 13:43
ehehe if only I could bribe my sysadmin, I could try! – pomarc Apr 8 at 14:14
hjave you tried IISReset? – Christopher_G_Lewis Apr 8 at 17:12
christopher, as far as I know IISReset will stop and restart IIS, which in a production server with multiple customers websites is not an option for me. – pomarc Apr 8 at 19:52

3 Answers

vote up 1 vote down check

I would try stopping the application pool for the website that is accessing the web.config.

link|flag
I've tried that. I've moved the application to a new application pool do that I could stop it without affecting any other app, but with no luck. – pomarc Apr 8 at 14:13
the sysadmin recycled all the app pools, which is a very bad solution, but it worked. I am still perplexed. – pomarc Apr 20 at 14:36
vote up 0 vote down

Best bet would be to rename the web config (maintianing the lock on that file) and recreating the file. I'm not sure what would lock the file, but the app pool recycle should have freed the lock.

link|flag
excuse me, I can't understand: for what I know you cannot rename a locked file... – pomarc Apr 9 at 14:18
Actually, you can RENAME a locked file. You can't copy it, you can't move it, but you can change its name. The lock will remain on the renamed file, allowing you to create a new web.config. – Christopher_G_Lewis Apr 9 at 15:31
vote up 0 vote down

If you're using an x32 based system, you could try using Unlocker to 'unlock' the file, or possibly delete web.config and then recreate it. Failing that, you could kill the w3wp.exe worker process, which should automatically restart.

link|flag
using unlocker or stopping w3wp.exe on a production server is a No-No, according to the sysadmins... – pomarc Apr 8 at 14:15

Your Answer

Get an OpenID
or

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