简体   繁体   English

ASP.NET MVC Web应用程序用户登录后,SQL Server Express无法连接而没有任何有用的错误信息

[英]SQL Server Express fails to connect without any useful error information after ASP.NET MVC Web App user login

I am using Visual Studio 2013 Update 4, I have an ASP.NET MVC Web Application which is using Entity Framework 6.1.1. 我正在使用Visual Studio 2013 Update 4,我有一个使用Entity Framework 6.1.1的ASP.NET MVC Web应用程序。

When I try to run my web application, it fails to load with an error. 当我尝试运行Web应用程序时,它无法加载并显示错误。

In the console I get the same error repetitively: 在控制台中,我反复收到相同的错误:

A first chance exception of type 'System.Data.SqlClient.SqlException' occurred in System.Data.dll
A first chance exception of type 'System.Data.SqlClient.SqlException' occurred in System.Data.dll
A first chance exception of type 'System.Data.SqlClient.SqlException' occurred in System.Data.dll
A first chance exception of type 'System.Data.SqlClient.SqlException' occurred in System.Data.dll
A first chance exception of type 'System.Data.SqlClient.SqlException' occurred in System.Data.dll
A first chance exception of type 'System.Data.SqlClient.SqlException' occurred in System.Data.dll

In the web browser I get this error: 在网络浏览器中,我收到此错误:

Server Error in '/' Application.

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: 26 - Error Locating Server/Instance Specified)

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. 

SQLExpress database file auto-creation error: 

The connection string specifies a local Sql Server Express instance using a database location within the application's App_Data directory. The provider attempted to automatically create the application services database because the provider determined that the database does not exist. The following configuration requirements are necessary to successfully check for existence of the application services database and automatically create the application services database:

If the application is running on either Windows 7 or Windows Server 2008R2, special configuration steps are necessary to enable automatic creation of the provider database. Additional information is available at: http://go.microsoft.com/fwlink/?LinkId=160102. If the application's App_Data directory does not already exist, the web server account must have read and write access to the application's directory. This is necessary because the web server account will automatically create the App_Data directory if it does not already exist.
If the application's App_Data directory already exists, the web server account only requires read and write access to the application's App_Data directory. This is necessary because the web server account will attempt to verify that the Sql Server Express database already exists within the application's App_Data directory. Revoking read access on the App_Data directory from the web server account will prevent the provider from correctly determining if the Sql Server Express database already exists. This will cause an error when the provider attempts to create a duplicate of an already existing database. Write access is required because the web server account's credentials are used when creating the new database.
Sql Server Express must be installed on the machine.
The process identity for the web server account must have a local user profile. See the readme document for details on how to create a local user profile for both machine and domain accounts.


Source Error: 

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace: 


[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: 26 - Error Locating Server/Instance Specified)]
   System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction) +1900630
   System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) +545
   System.Data.SqlClient.TdsParser.Connect(ServerInfo serverInfo, SqlInternalConnectionTds connHandler, Boolean ignoreSniOpenTimeout, Int64 timerExpire, Boolean encrypt, Boolean trustServerCert, Boolean integratedSecurity, Boolean withFailover) +452
   System.Data.SqlClient.SqlInternalConnectionTds.AttemptOneLogin(ServerInfo serverInfo, String newPassword, SecureString newSecurePassword, Boolean ignoreSniOpenTimeout, TimeoutTimer timeout, Boolean withFailover) +198
   System.Data.SqlClient.SqlInternalConnectionTds.LoginNoFailover(ServerInfo serverInfo, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance, SqlConnectionString connectionOptions, SqlCredential credential, TimeoutTimer timeout) +923
   System.Data.SqlClient.SqlInternalConnectionTds.OpenLoginEnlist(TimeoutTimer timeout, SqlConnectionString connectionOptions, SqlCredential credential, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance) +324
   System.Data.SqlClient.SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, SqlCredential credential, Object providerInfo, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance, SqlConnectionString userConnectionOptions, SessionData reconnectSessionData) +646
   System.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, DbConnectionPoolKey poolKey, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection, DbConnectionOptions userOptions) +459
   System.Data.ProviderBase.DbConnectionFactory.CreateNonPooledConnection(DbConnection owningConnection, DbConnectionPoolGroup poolGroup, DbConnectionOptions userOptions) +38
   System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection) +800
   System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions) +143
   System.Data.ProviderBase.DbConnectionClosed.TryOpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions) +21
   System.Data.SqlClient.SqlConnection.TryOpenInner(TaskCompletionSource`1 retry) +141
   System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource`1 retry) +252
   System.Data.SqlClient.SqlConnection.Open() +130
   System.Web.Management.SqlServices.GetSqlConnection(String server, String user, String password, Boolean trusted, String connectionString) +75

[HttpException (0x80004005): Unable to connect to SQL Server database.]
   System.Web.Management.SqlServices.GetSqlConnection(String server, String user, String password, Boolean trusted, String connectionString) +125
   System.Web.Management.SqlServices.SetupApplicationServices(String server, String user, String password, Boolean trusted, String connectionString, String database, String dbFileName, SqlFeatures features, Boolean install) +89
   System.Web.Management.SqlServices.Install(String database, String dbFileName, String connectionString) +29
   System.Web.DataAccess.SqlConnectionHelper.CreateMdfFile(String fullFileName, String dataDir, String connectionString) +386

Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.5.27.0

So I tried to connect to the database using SQL Server Management Studio using the connection string taken from the Properties windows in Visual Studio: 因此,我尝试使用SQL Server Management Studio使用从Visual Studio的“属性”窗口获取的连接字符串连接到数据库:

Data Source=(LocalDb)\v11.0;AttachDbFilename=C:\Users\Aaron\Desktop\AbcBankSolution\AbcBankWebApplication\App_Data\aspnet-AbcBankWebApplication-20150203085459.mdf;Initial Catalog=aspnet-AbcBankWebApplication-20150203085459;Integrated Security=True

This gives the following error: 这给出了以下错误:

The value's length for key 'data source' exceeds it's limit of '128'

Which is odd considering it is only 15 in length... 考虑到长度只有15 ...

Finally, in Visual Studio, I can connect and refresh the database in the Server Explorer window, so I really don't know what is going on... 最后,在Visual Studio中,我可以在“服务器资源管理器”窗口中连接并刷新数据库,所以我真的不知道发生了什么...

How can I fix this problem? 我该如何解决这个问题?

I tried many different solutions to fix this error. 我尝试了许多不同的解决方案来修复此错误。 In the end, I discovered that it was the line after where the exception was shown as being thrown which had a problem - not the line where the debugger said it was! 最后,我发现显示异常的那一行是发生问题的,而不是调试器说的那一行!

The error looks pretty clear to me, it's unable to find the db in question, is trying to auto-create it in your app, and failing to do so. 该错误在我看来很清楚,无法找到有问题的数据库,正在尝试在您的应用程序中自动创建它,但未能成功。

Have you tried this part? 您是否尝试过此部分?

If the application is running on either Windows 7 or Windows Server 2008R2, special configuration steps are necessary to enable automatic creation of the provider database. Additional information is available at: http://go.microsoft.com/fwlink/?LinkId=160102.

Also, when you copy and paste your connection string into Management Studio, it's reading the whole string, not just the Data Source portion of the connection string, that's why the length is too long. 同样,当您将连接字符串复制并粘贴到Management Studio中时,它将读取整个字符串,而不仅仅是连接字符串的“数据源”部分,这就是长度太长的原因。

The data source length is the entire line length after Data Source= . 数据源长度是Data Source=之后的整个行长度。 That is, 那是,

Data Source=(LocalDb)\v11.0;AttachDbFilename=C:\Users\Aaron\Desktop\AbcBankSolution\AbcBankWebApplication\App_Data\aspnet-AbcBankWebApplication-20150203085459.mdf;Initial Catalog=aspnet-AbcBankWebApplication-20150203085459;Integrated Security=True

From the start of the line ( Data Source= ) is 247 characters long. 从该行的开头( Data Source= )开始,共有247个字符。 Reducing the length by Data Source= gives us a length of 12 yields 235 characters in length. 通过Data Source=减少长度,我们得到的长度为12,产生235个字符的长度。 That far exceeds the max length of 128 character allowed for the property Data Source . 该长度超出了属性Data Source允许的最大128个字符的长度。

Place your database in a SHORT path, such as C:\\DSolution . 将数据库放置在SHORT路径中,例如C:\\DSolution Cut down its name to something like ABS-2015020308.mdf Remember that all the specifiers such as Initial Catalog= and ;Integrated Security=True count as part of the Data Source property length. 将其名称ABS-2015020308.mdfABS-2015020308.mdf请记住,所有说明符(例如Initial Catalog=;Integrated Security=True作为Data Source属性长度的一部分。 See if you even need to specify Initial Catalog . 看看您是否甚至需要指定Initial Catalog

Remember, you have to make everything from (LocalDB) to ;Integrated Security=True fit in less than 128 characters. 请记住,您必须使从(LocalDB);Integrated Security=True所有内容都少于128个字符。 So shorten your paths, and shorten your name at a minimum. 因此,请缩短路径,并至少缩短名称。

I can't comment on the solution of Aalawlx ... but in my case it was the same. 我无法评论Aalawlx的解决方案...但就我而言,情况是相同的。 I had a line Membership.GetUser().ProviderUserKey.ToString() where the debugger stopped just before and gave me the SQL Error .... damn, costed me a long long lonnngg time and lots of Google :-) 我有一行Membership.GetUser().ProviderUserKey.ToString() ,调试器在此之前停止了运行,并给了我SQL错误....该死,这使我花费了很长的lonnngg时间,并花费了很多Google :-)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 ASP.NET 5 MVC:无法连接到 Web 服务器“IIS Express” - ASP.NET 5 MVC: unable to connect to web server 'IIS Express' 尝试连接 SQL 服务器和 ASP.NET MVC mvc 应用程序 - Trying connect SQL Server and ASP.NET MVC mvc app 从SQL Server Express迁移到SQL Server asp.net Web应用程序登录时出现错误 - Getting an error when moving from SQL Server Express to SQL Server asp.net web app logon ASP.NET MVC 4:成功登录后如何从Twitter获取用户信息? - ASP.NET MVC 4: How to Obtain User Information from Twitter After Successful Login? ASP.NET MVC 4 EF6 无法连接到 SQL Server Express 数据库 - ASP.NET MVC 4 EF6 cannot connect to SQL Server Express database 无法连接到 web 服务器 IIS Express - ASP.NET CORE - Unable to connect to web server IIS Express - ASP.NET CORE ASP.NET MVC:从 SQL 服务器快速移动到 Azure - ASP.NET MVC: moving from SQL Server Express to Azure Asp.net 会员提供程序无法连接到内部部署 SQL 服务器部署到 Azure 应用程序服务 - Asp.net Membership provider fails to connect to on premise SQL Server when deployed to Azure app service 在ASP.NET MVC 5中登录后重定向到用户配置文件 - Redirection to User Profile After Login in ASP.NET MVC 5 ASP.NET MVC 3应用程序无法连接到AWS实例上的SQL Server 2008实例 - ASP.NET MVC 3 app cannot connect to SQL server 2008 instance on AWS instance
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM