标签: windows-2003-webserver

IIS:空闲超时与回收

在IIS中,有两个区域(嗯,两个以上)可以进行回收:

  1. 在"过程模型"部分→"空闲超时"下(默认为20分钟)

  1. 在"回收"部分→"常规时间间隔"下(默认为1740分钟)

我的问题是:

  1. 这两种方法有什么区别?
  2. 设置它们对0的负面影响是什么?

asp.net iis windows-2003-webserver

90
推荐指数
3
解决办法
9万
查看次数

用户'NT AUTHORITY\ANONYMOUS LOGON'的Web App登录失败

我看到很多人都会遇到这个错误,但他们的情况都与我的情况有所不同.

我有一个在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配置中添加了我的域\登录名和密码,则该站点可以正常工作.

.net iis-6 windows-2003-webserver

20
推荐指数
2
解决办法
8万
查看次数

使用 pscp.exe 时跳过主机检查

我们有一个在默认 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)

windows-services pscp windows-2003-webserver

5
推荐指数
1
解决办法
3901
查看次数

RavenDB错误:日志文件版本与Jet版本不兼容

所以我使用以下指令在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)

ravendb windows-2003-webserver

1
推荐指数
1
解决办法
1189
查看次数