在IIS中,有两个区域(嗯,两个以上)可以进行回收:
和
我的问题是:
我看到很多人都会遇到这个错误,但他们的情况都与我的情况有所不同.
我有一个在Windows 2003 Server上的IIS 6.0中运行的ASP.NET 4.0 Web应用程序.
当我远程访问Web服务器框并在那里登录并以localhost而不是机器名称访问该站点时,Web应用程序正常工作.但是,当我从另一台客户端计算机访问该网站时,我收到以下错误:
Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'
Run Code Online (Sandbox Code Playgroud)
该网站启用了匿名访问,打开了Windows身份验证.该Web应用程序包含以下内容:
<authentication mode="Windows"> </authentication>
<identity impersonate="true"/>
<connectionStrings>
<add name="MyConnection" connectionString="Data Source=MyDbServer;Initial Catalog=MyDatabase;Integrated Security=True"
</connectionStrings>
Run Code Online (Sandbox Code Playgroud)
我的Web服务器正在虚拟服务器上运行.这有关系吗?我假设没有.
请注意,如果我在Impersonation = TRUE后在Web配置中添加了我的域\登录名和密码,则该站点可以正常工作.
我们有一个在默认 Windows 本地系统帐户下运行的 Windows 服务。此服务尝试使用 pscp.exe 将文件传输到服务器。这是我们触发的确切命令:
pscp.exe -batch -r -q -v -l **** -pw **** C:/temp/test my-server-host-name:/bnrr2p3
Run Code Online (Sandbox Code Playgroud)
请注意使用 --batch 选项以避免任何提示。现在这失败了,因为服务器名称尚未添加到已知主机列表中,并出现以下错误:
Looking up host "my-server-host-name"
Connecting to 10.89.3.108 port 22
Server version: SSH-2.0-Sun_SSH_1.1.4
Using SSH protocol version 2
We claim version: SSH-2.0-PuTTY_Release_0.62
Doing Diffie-Hellman group exchange
Doing Diffie-Hellman key exchange with hash SHA-1
The server's host key is not cached in the registry. You
have no guarantee that the server is the computer you
think it is.
The server's rsa2 …Run Code Online (Sandbox Code Playgroud) 所以我使用以下指令在Win2003服务器上安装了RavendDB:
http://old.ravendb.net/documentation/docs-deployment-iis
当我尝试浏览到该网站时,我收到以下错误.有任何想法吗?
Version of log file is not compatible with Jet version
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: Microsoft.Isam.Esent.Interop.EsentBadLogVersionException: Version of log file is not compatible with Jet version
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the …Run Code Online (Sandbox Code Playgroud)