0

具有使用表单身份验证的帐户控制器的默认 ASP.NET MVC 4 项目,但此身份验证在我的服务器上的 IIS 7.5 上给出此错误。

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: 50 - Local Database Runtime error occurred. Cannot create an automatic instance. See the Windows Application event log for error details.) 

我怎么能解决这个问题,因为我在课堂上找不到任何联系。

4

2 回答 2

1

默认的 MVC 4 项目依赖于 IIS Express 和 LocalDB,生成的 LocalDB 存储在 App_Data 文件夹中。

但是,当将项目更改为在完整的 IIS 下运行时,建议您切换到使用 SQL Express。为此,您需要创建一个数据库并设置相关的连接字符串。假设您的应用程序具有相关权限并且 WebSecurity.InitializeDatabaseConnection 已将 autoCreateTables 设置为 true,则将自动创建相关表。

默认数据库初始化是通过我们可以在 Filters/InitializeSimpleMembershipAttribute.cs 中找到的 InitializeSimpleMembershipAttribute 完成的,然后将该属性应用于 AccountController。

于 2013-04-04T11:31:31.297 回答
0

您应该按照异常消息中的建议检查 Windows 日志。连接字符串位于 Web 应用程序的 web.config 文件中。

于 2013-04-03T20:45:53.100 回答