$serverName = "(local)"; Database server address $uid = "sa"; Database user Name $pwd = "Password123"; Database Password $connectioninfo = array ("UID" = = $uid, "PWD" = = $pwd, "database" = "test"); $conn = Sqlsrv_connect ($ ServerName, $connectionInfo); if ($conn = = False) { echo ' connection failed! "; Die (Print_r (Sqlsrv_errors (), True));} if ($conn) {echo "Connection succeeded";}
The connection was successful, but how to change the local to 127.0.0.1.
Reply to discussion (solution)
Switch directly to an IP address
$serverName = "IP Address";
Or
$serverName = "Computer name";
If there are multiple instances on the server, you also need to have the instance name
Remote connection also requires remote connection service
SQL attacks are prevalent due to the default remote connection of SQL Server 2000.
So now all learned, without the cumbersome remote connection authorization, is unable to connect
Header ("content-type:text/html; charset=gb2312 "); $serverName =" 127.0.0.1/mssqlserver "; Database server address $uid = "sa"; Database user Name $pwd = "Password123"; Database Password $connectioninfo = array ("UID" = = $uid, "PWD" = = $pwd, "database" = "test"); $conn = Sqlsrv_connect ($ ServerName, $connectionInfo);//$conn = new PDO ("Sqlsrv:server=127.0.0.1;database=test", "sa", "yyyy1111") or Die ("PDO Connection faild. "); if ($conn = = False) { echo ' connection failed! "; Die (Print_r (Sqlsrv_errors (), True));} if ($conn) {echo "Connection succeeded";}
Results:
Connection Failed! Array ([0] = = Array ([0] = 08001 [SQLSTATE] = 08001 [1] = [code] = [2] = [Microsoft][sql Se RVer Native Client 11.0]named Pipes provider:could not open a connection to SQL Server [67]. [Message] = [Microsoft][sql Server Native Client 11.0]named Pipes provider:could not open a connection to SQL server [1] = = Array ([0] = HYT00 [SQLSTATE] = HYT00 [1] = 0 [Code] = 0 [2] = [Microsoft][sql Serv Er Native client 11.0]login timeout expired [message] = [Microsoft][sql Server Native Client 11.0]login timeout expire D) [2] = = Array ([0] = 08001 [SQLSTATE] = 08001 [1] = [code] = [2] = [Microsoft][sql Server Native Client 11.0]a network-related or instance-specific error have occurred while establishing A connection to SQL Serve R. Server is not a found or not accessible. Check If instance name is correct and if SQL Server is configured to allow remote connections. For more information see SQL SeRVer Books Online. [Message] = [Microsoft][sql Server Native Client 11.0]a network-related or instance-specific error have occurred while Establishing a connection to SQL Server. Server is not a found or not accessible. Check If instance name is correct and if SQL Server is configured to allow remote connections. For more information see SQL Server Books Online. ) )
Header ("content-type:text/html; charset=gb2312 "); $serverName =" 127.0.0.1 "; Database server address $uid = "sa"; Database user Name $pwd = "Password123"; Database Password $connectioninfo = array ("UID" = = $uid, "PWD" = = $pwd, "database" = "test"); $conn = Sqlsrv_connect ($ ServerName, $connectionInfo);//$conn = new PDO ("Sqlsrv:server=127.0.0.1;database=test", "sa", "yyyy1111") or Die ("PDO Connection faild. "); if ($conn = = False) { echo ' connection failed! "; Die (Print_r (Sqlsrv_errors (), True));} if ($conn) {echo "Connection succeeded";}
Result: Connection Failed! Array ([0] = = Array ([0] = = 08001 [SQLSTATE] = 08001 [1] = 5 [Code] = 5 [2] = = [Microsoft][sql Serv Er Native Client 11.0]named Pipes provider:could not open a connection to SQL Server [5]. [Message] = [Microsoft][sql Server Native Client 11.0]named Pipes provider:could not open a connection to SQL server [5].) [1] = = Array ([0] = HYT00 [SQLSTATE] = HYT00 [1] = 0 [Code] = 0 [2] = [Microsoft][sql Serve R Native Client 11.0]login timeout expired [message] = [Microsoft][sql Server Native Client 11.0]login Timeout expired ) [2] = = Array ([0] = 08001 [SQLSTATE] = 08001 [1] = 5 [Code] = 5 [2] + = [Microsoft][sql Server Na tive Client 11.0]a network-related or instance-specific error have occurred while establishing A connection to SQL Server. Server is not a found or not accessible. Check If instance name is correct and if SQL Server is configured to allow remote connections. For more information see SQL ServeR Books Online. [Message] = [Microsoft][sql Server Native Client 11.0]a network-related or instance-specific error have occurred while Establishing a connection to SQL Server. Server is not a found or not accessible. Check If instance name is correct and if SQL Server is configured to allow remote connections. For more information see SQL Server Books Online. ) )
1. Run SQL Server Configuration Manager: SQL Server Config Manager, open protocol protocols
Allow Named pipes "Named Pipes" and "TCP/IP"
2. Right click on "TCP/IP" to open the Properties property tag "IP Addresses"
3. Fill in TCP dynamic port "TCP Ports" 1433
4. Restart SQL Server
The server instance writes this:
$serverName = "127.0.01\sqlexpress, 1542"; 1542 can not write, default is 1433;
Thank you, two brothers.