6

我已将身份服务器数据库用于具有成员资格的项目。它工作正常。现在我将新服务器连接到新数据库出现错误。如果使用旧服务器意味着它正在正常运行。如何清除这个?我可以将任何属性设置为新数据库吗?

MembershipUser membershipObj = Membership.GetUser(Context.User.Identity.Name.ToString());

membershipObj收到此错误

连接超时已过期。尝试使用登录前握手确认时超时时间已过。这可能是因为登录前握手失败或服务器无法及时响应。尝试连接到此服务器所花费的持续时间是 - [预登录] 初始化 = 1764;握手=13233;

4

1 回答 1

-1
  1. Enable necessary protocols (TCP/Named Pipes) in SQL Server Configuration Manager
  2. Explicitly allow connections (and/or ports) in Windows Firewall (Server's)

These fixed my issue. Hope it helps some body.

于 2015-05-02T19:08:44.680 回答