如何在我的系统中安装 Bug Tracker .Net 工具软件?
我已经在我的系统中安装了 ASP .NET 2.0 MVC3、SQL Server Express 2005 和 SQL Server Management Studio Express 2005 以及 IIS 7。如果我打开 install_btnet 文件,并提供 SQL 服务器详细信息,它也无法连接。由于服务不可用,它给出了错误。任何人都建议我如何通过示例在我的系统中安装 Bug 跟踪器 .NET 工具。
谢谢。
I have installed ASP .NET 2.0 MVC3, SQL server express 2005 and SQL server Management studio express 2005 and IIS 7 in my system. If I am opening the install_btnet file, and providing the SQL server details also it is not getting connect. It is giving error as Service unavailable. Any one suggest me how to install Bug tracker .NET tool in my system with examples.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先要检查您的 SQL 2005 Express 实例是否正在运行并允许远程连接。打开管理工具>>服务并查找名为“MSSQLSERVER$SQLEXPRESS”的服务并确保它已启动。
接下来,打开SqlServer配置实用程序(在安装了SQL 2005 Express的服务器或PC上)查找客户端配置选项并选择“客户端协议”。
将 TCP/IP 设置为“启用”,您现在应该能够连接到 SQL 服务器。
请注意,即使您的 BugTracker.NET 安装在同一台计算机上,它也可能仍然使用网络连接到您的 SQL 实例。
希望这有帮助,
戴夫
First thing to check it that your SQL 2005 express instance is running and allowing remote connections. Open the Administrative Tools >> Services and look for the service called "MSSQLSERVER$SQLEXPRESS" and ensure it is started.
Next, open the SqlServer Configuration Utility (on the server or PC where SQL 2005 Express is Installed) Look for the Client Configuration Option and Select "Client Protocols".
Set TCP/IP to "Enabled" and you should now be able to connect to your SQL server.
Note that even if your BugTracker.NET install is on the same machine, it may still be using the network to connect to your SQL Instance.
Hope this helps,
Dave