asp.net – Web.config加密错误

前端之家收集整理的这篇文章主要介绍了asp.net – Web.config加密错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有加密问题.我向RSA文件夹的所有用户授予了完全权限.我做到了
C:\>aspnet_regiis -pe "appSettings" -location "web.config" -prov "RsaProtectedCo
nfigurationProvider"
Encrypting configuration section...
An error occurred executing the configuration section handler for appSettings.

Failed to encrypt the section 'appSettings' using provider 'RsaProtectedConfigur
ationProvider'. Error message from the provider: Object already exists.

Failed!

然后我做了

C:\>aspnet_regiis -pa "NetFrameworkConfigurationKey" "administrator"
Adding ACL for access to the RSA Key container...
The RSA key container was not found.
Failed!

其次是

C:\>aspnet_regiis -pc "NetFrameworkConfigurationKey" -exp
Creating RSA Key container...
The RSA key container could not be opened.
Failed!

没有什么对我有用.

有人可以帮忙吗?

谢谢

解决方法

这次失败让我遇到了同样的问题:

aspnet_regiis -pa “NetFrameworkConfigurationKey” “{Domain}{Username}”

上面一行返回“未找到RSA密钥容器”.

解决此问题,我必须以管理员身份运行命令提示符(打开开始>附件>然后右键单击命令提示符并选择以管理员身份运行…).即使我的帐户是管理员帐户,我也必须这样做.

原文链接:https://www.f2er.com/aspnet/245286.html

猜你在找的asp.Net相关文章