How to remotely connect to the SQL server in the LAN

Source: Internet
Author: User
Tags builtin mssqlserver

Http://www.haoxiai.net/fuwuqi/fuwuqijishu/106349.html

The following describes how to solve the three most common connection errors.
The first error "SQL server does not exist or access is denied" is usually the most complicated. There are many causes of the error and there are many aspects to check. Generally, there are several possibilities:
  
1. the SQL server name or IP address is incorrectly spelled;
  
2. The server network configuration is incorrect;
  
3. The client network configuration is incorrect.
  
To solve this problem, we generally need to follow the steps below to find out the cause of the error step by step.
  
First, check the network physical connection:
  
Ping <Server IP address>
  
Or
  
Ping <Server Name>
  
 
If you ping <Server IP address>
If the connection fails, the physical connection is faulty. In this case, check the hardware devices, such as the NIC, hub, and vro. Another reason may be that the client and server are installed with firewall software, such
ISA Server. Firewall software may block Ping and telnet
So when we check for connection problems, we must temporarily disable the firewall software or open all closed ports.
  
If Ping
If the <Server IP address> Ping <Server Name> fails, the name resolution is incorrect. In this case, check the DNS
Whether the service is normal. Sometimes the client and server are not in the same LAN. At this time, it is likely that the server name cannot be used to identify the server directly. At this time, we can use the hosts file
Name resolution:
  
1. Use notepad to open the hosts file (usually in C:/winnt/system32/Drivers/etc ).
  
2. Add a record corresponding to the IP address and server name, for example:
  
172.1610.24 myserver
  
You can also configure it in the SQL Server Client Network utility, which will be described in detail later.
  
Second, use the Telnet command to check the SQL server's working status:
  
Telnet <Server IP addresses> 1433
  
 
If the command is successfully executed, you can see that the cursor keeps flashing in the upper left corner after the screen flashes. This indicates that the SQL Server is working normally and is listening to port 1433
TCP/IP connection; If the command returns the error message "cannot open the connection", it indicates that the server has not started the SQL Server service, or the server has not enabled
The TCP/IP protocol, or the server does not listen on the default port 1433 of SQL Server.
  
Next, we need to check the network configuration on the server, whether the named pipe is enabled, whether the TCP/IP protocol is enabled, and so on. We can use the server network tools provided by SQL Server for inspection.
  
Click program> Microsoft SQL Server> server network tools. The following figure is displayed after the tool is opened:
  
Here we can see which protocols are enabled on the server. In general, we enable Named Pipes and TCP/IP protocols.
  
Click "properties" in the TCP/IP protocol to check the default port settings of the sqk Server Service, as shown in:
  
Generally, we use the default port 1433 of SQL Server. If you select "Hide server", it means that the client cannot see this server by enumerating the server. This protects the server, but does not affect the connection.
  
After checking the network configuration of the server, we will go to the client to check the network configuration of the client. We can also use the client network provided by SQL Server to perform the check. The difference is that this tool is run on the client this time.
  
Click program> Microsoft SQL Server> client network tools. The following figure shows the protocols enabled on the client. In general, we also need to enable the named pipe and TCP/IP protocol.
  
Click TCP/IP protocol and select "properties" to check the default connection port settings of the client, as shown in. The port must be the same as the server.
  
 
Click the "alias" tab to configure an alias for the server. The server alias is the name used for connection. The server in the connection parameter is the real server name. The two can be the same or different. For example,
We can use myserver to replace the real server name sql2kcn-02 and use the network library named
Pipes. The alias settings are similar to the hosts file.
  
Through the above checks, the cause of Error 1 can basically be ruled out. Next we will describe in detail how to solve Error 2.
  
 
When you try to use SA in the query analyzer to connect to SQL Server, or use SA in the Enterprise Manager to create a new SQL Server registration, you will often encounter
2. This error occurs because SQL server uses the "Windows only" authentication method, so you cannot use SQL
Server login account (such as SA) to connect. The solution is as follows:
  
1. Use the enterprise manager on the server side and select "use Windows Authentication" to connect to SQL Server;
  
2. Expand "SQL Server group", right-click the name of the SQL Server server, select "properties", and then select the "Security" tab;
  
3. Under "authentication", select "SQL Server and Windows ".
  
4. Restart the SQL Server service.
  
 
In the preceding solution, if you use "use Windows Authentication" to connect to SQL Server in step 1
Failure, we will encounter a dilemma: first, the server only allows Windows authentication; second, even if windows is used
Authentication still fails to connect to the server. This situation is vividly referred to as "locking yourself out of the door", because no matter what method is used, users cannot use the connection. In fact, we can repair
To change the authentication method to SQL Server and windows, follow these steps:
  
1. Click "start"-"run", enter regedit, and press enter to enter the Registry Editor;
  
2. Expand the registry key in sequence and browse to the following registry key:
  
[HKEY_LOCAL_MACHINE/software/Microsoft/MSSQLServer]
  
3. Find the name "loginmode" on the right of the screen and double-click to edit the double-byte value;
  
4. Change the original value from 1 to 2 and click "OK ";
  
5. Close the Registry Editor;
  
6. Restart the SQL Server service.
  
 
In this case, you can successfully use SA to create an SQL Server registration in the Enterprise Manager, but you still cannot connect to the SQL server in Windows Authentication mode.
Server. This is because there are two default logon accounts in SQL Server: builtin/administrators and
<Machine Name>/Administrator deleted. To restore these two accounts, you can use the following methods:
  
1. Open the Enterprise Manager, expand the server group, and then expand the server;
  
2. Expand security, right-click logon, and click New logon ";
  
3. In the Name box, enter builtin/administrators;
  
4. On the "server role" tab, select "System Administrators ";
  
5. Click "OK" to exit;
  
6. Use the same method to add <machine Name>/administrator to log on.
  
The following registry key
  
 
HKEY_LOCAL_MACHINE/software/Microsoft/MSSQLServer/loginmode
The value determines the Authentication mode that SQL server will adopt. This value is 1, indicating that the Windows Authentication mode is used; this value is 2, indicating that the Windows Authentication mode is used (
Authentication and SQL Server Authentication ).
  
After reading how to solve the first two errors, let's take a look at the third error shown in 3.
  
 
If a third error occurs, it generally indicates that the client has found this server and can be connected. However, an error occurs because the connection time exceeds the allowed time. This usually happens.
When you run the enterprise manager on the Internet to register another server that is also on the Internet and has a slow connection, the above timeout error may occur. Some situations
The local area network may cause such errors.
  
To solve this problem, you can modify the connection timeout settings of the client. By default, the timeout setting for registering another SQL server through the Enterprise Manager is 4 seconds, the query analyzer is 15 seconds (this is also the reason why there is a high possibility of errors in the Enterprise Manager ). The procedure is as follows:
  
1. In Enterprise Manager, select "Tools" from the menu, and then select "options ";
  
2. In the displayed "SQL Server Enterprise Manager properties" window, click the "advanced" tab;
  
3. Enter a large number, such as 20, in the "Login timeout (seconds)" box on the right under "connection settings.
  
The query analyzer can also be set at the same position.
  
Simply put:
/**********************************/
1. Ping is guaranteed first.
  
2. No error will be reported when Telnet IP 1433 is written in DOS
  
3. Use an IP address to connect to the Enterprise Manager:
 
Enterprise Manager --> right-click sqlserver group --> Create sqlserver registration --> next --> Write Remote Instance name (IP address, Machine
Name) --> next --> select sqlserver login --> next --> write login name and password (SA, pass) --> next
--> Next --> complete
  
4. If not:
Sqlserver server --> Start Menu --> sqlserver --> server network utility --> enable Winsock Proxy --> proxy address: (sqlserver Server IP address) --> proxy port --> 1433 --> OK
  
5. If not:
 
Sqlserver client --> Start Menu --> sqlserver --> client network utility --> alias --> Add
--> Write alias such as "" --> "network library" select TCP/IP --> server name write remote IP or Instance name --> OK SQL
Special topics on server SQL Server SQL server data processing, or

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.