How would I set up my database to enable it to be accessed from other computers on my network. I want to create a local website and/or application for my home computers that uses this database.
- How would I set up the database to be accessed over a home network?
- How can I create a local website which allows anyone on the network to connect to?
Is it necessary when creating a local website, you’d need to enable world wide services firewall exception(already done)? How can an intranet user address this website?
I’m using SQL Server and ASP.NET.
Your best bet would be to approach it like this:
machine1. Usually you won’t need to make a Windows Firewall exception, as the install/config will do this for you. Make sure it’s up and running:http://machine1machine2.Data Source=machine2;Initial Catalog=myDataBase;User Id=myUsername;Password=myPassword;http://machine1This isn’t meant to be an exhaustive list, and you may run into a snag or two, depending on your environment.