0

您好我想在 IIS 服务器中发布我的应用程序。

首先,我在我的 sql server 中创建了一个数据库,并将所有需要的数据放在上面。

然后我更新我web.config以使用新的远程数据库。不幸的是我得到一个错误

连接字符串:

<add name="DefaultConnection" providerName="System.Data.SqlClient" connectionString="Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=IntranetDatabase;Data Source=SRVDEV2010\SRVDEV2010" />

堆栈跟踪 :

 [SqlException (0x80131904): A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 52 - Unable to locate a Local Database Runtime installation. Verify that SQL Server Express is properly installed and that the Local Database Runtime feature is enabled.)]

我检查我是否可以远程访问数据库。我创建了一个udl文件来验证我的connectionstring,这是结果。

在此处输入图像描述

我不知道为什么 udl 文件可以连接,但我的应用程序却不能。任何帮助表示赞赏

4

1 回答 1

0

应用程序池配置为在哪个用户下运行?您正在使用 Windows 身份验证,这意味着您的 IIS 应用程序池应配置为在有权访问数据库的用户下运行。

于 2013-06-24T09:37:12.950 回答