Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Config Error Failed to decrypt attribute 'password'

Module IIS Web Core
Notification Unknown
Handler Not yet determined
Error Code 0x8007000d
Config Error Failed to decrypt attribute 'password'
Config File Unavailable (Config Isolation)

When i run my app im getting this error and i couldn't find any solution please help?

like image 315
WeyCell Avatar asked Sep 03 '13 03:09

WeyCell


4 Answers

I had the same issue after clone a Web Server.

Solution:

Source Server:

aspnet_regiis -px "iisConfigurationKey" "C:\temp\iisConfigurationKey.xml" -pri 
aspnet_regiis -px "iisWasKey" "C:\temp\iisWasKey.xml" -pri 

Destination Server:

aspnet_regiis -pi "iisConfigurationKey" "C:\temp\iisConfigurationKey.xml" 
aspnet_regiis -pi "iisWasKey" "C:\temp\iisWasKey.xml"

And, at the final, copy applicationhost.config from the source server to destination server.

like image 72
Alexandre Smialoski Avatar answered Nov 17 '22 00:11

Alexandre Smialoski


I resolved the issue. The problem was C:\Windows\System32\inetsrv\config\applicationHost.config file. In the config file, I deleted username and password definitions for applications and it worked well.

like image 12
WeyCell Avatar answered Nov 17 '22 01:11

WeyCell


I fixed this by disabling Anonymous Access in the application, then re-enabling it immediately. No IIS restart necessary.

like image 1
Rots Avatar answered Nov 17 '22 01:11

Rots


This is one of those mystery errors. For me, the issue occurred when we cloned a development server. When I went to reconfigure some the sites in IIS on the cloned server, one of the sites threw this error. You need to delete all the sites that shared the same app pool in IIS and recreate them.

like image 1
PhillyNJ Avatar answered Nov 17 '22 00:11

PhillyNJ