Could not find configuration manager. sql server 2008 r2 under win10

 

Win10 opens the SQL Server Configuration Manager of sqlserver2008r2, and the "SQL Server Configuration Manager" cannot be found in the start program. Go to this directory on your computer to find, "C:\Windows\SysWOW64\SQLServerManager10.msc", and run this file directly to call up the "SQL Server Configuration Manager".

In win10, sqlserver2008r2 is installed. Sometimes after the installation is successful, you will find that the 1433 port of sqlserver cannot be accessed. Check the port number through the sql statement, and find that the 1433 port number cannot be found--query the port number
exec
sys.sp_readerrorlog 0, 1, 'listening '

 

At this time, the program can also successfully access the program through the port number 1434.
But sometimes if you want to modify the default port number 1433, you need to use the "SQL Server Configuration Manager".
 

Guess you like

Origin blog.csdn.net/zgscwxd/article/details/131533461