Microsoft SQL Server
--
Questions
--
Followers
Top Experts
How to resolve this problem, to login the database?
TITLE: Connect to Server
------------------------------
Cannot connect to PC326VM01\SSEXPR12.
------------------------------
ADDITIONAL INFORMATION:
A connection was successfully established with the server, but then an error occurred during the login process. (provider: Shared Memory Provider, error: 0 - No process is on the other end of the pipe.) (Microsoft SQL Server, Error: 233)
For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft%20SQL%20Server&EvtSrc=MSSQLServer&EvtID=233&LinkId=20476
------------------------------
No process is on the other end of the pipe
------------------------------
BUTTONS:
OK
------------------------------
I'm actually connecting to Sql server, within the same machine.
Zero AI Policy
We believe in human intelligence. Our moderation policy strictly prohibits the use of LLM content in our Q&A threads.
Sorry, I get this
C:\Users\zcwm>telnet 1433
Connecting To 1433...Could not open connection to the host, on port 23: Connect
failed
you need to enable both shared memory, pipe and tcp/ip protocols.Can I have more details to this?
Even after I've already enabled TCP/IP, and have put 1433 as TCP port (then have rebooted the machine), I now still get this
Cannot connect to PC326VM01\SSEXPR12.
--------------------------
ADDITIONAL INFORMATION:
A connection was successfully established with the server, but then an error occurred during the login process. (provider: Shared Memory Provider, error: 0 - No process is on the other end of the pipe.) (Microsoft SQL Server, Error: 233)
you need to enable both shared memory, pipe and tcp/ip protocolsDid you enabled all these protocols? Not only TCP/IP but all.






EARN REWARDS FOR ASKING, ANSWERING, AND MORE.
Earn free swag for participating on the platform.
Perhaps. I have never seen this message before.
But this does not surprise me either. This connectivity protocol resolution is always SQL Server culprit.
@HuaMinChen
You need to do some testing to confirm some information:
1>Please make sure the client does use TCIPIP only to connect. Connect remotely using the IP followed by the IP address as follows (replace the example IP by the IP of the server) 235.36.36.376, 1433
2> Please answer the previous question. Do you use an Activedirectory, Local admin or SQL Login to connect to the server to authenticate ?
Waiting for answer to above questions to go further. Hope this helps.
Within ssms, double check the options prior to attempting the connection to see which option it is trying to use. Named pipes, shared memory, tcp/ip and which port
Etc.

Get a FREE t-shirt when you ask your first question.
We believe in human intelligence. Our moderation policy strictly prohibits the use of LLM content in our Q&A threads.
Note while active is set, enabled is set to no on IP 2.
Have you tried doing what I suggested in my last post ? Please connect only remotely using TCPIP after disabling the other protocols. Can you do that? From SSMS, enter the IP in management studio followed by the port number. I gave you an example and I am waiting for the results. Unless you do that I can hardly help you further.
@arnold
<<Within ssms, double check the options prior to attempting the connection to see which option it is trying to use. Named pipes, shared memory, tcp/ip and which port>>
The client is one thing but the server resolution of the client request is another thing. I found the hard way the only reliable way to make sure Non-TPC IP protocols are not involved is to have them disabled on the server (with SQL Browser Service turned off) than troubleshoot from there.






EARN REWARDS FOR ASKING, ANSWERING, AND MORE.
Earn free swag for participating on the platform.
I disabled these 2 protocols
Shared memory
Named pipes
and then tried to connect to it, from one other machine, using the IP and did get these
Cannot connect to 10.202.6.31,1433.
------------------------------
ADDITIONAL INFORMATION:
A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: TCP Provider, error: 0 - No connection could be made because the target machine actively refused it.) (Microsoft SQL Server, Error: 10061)
Another issue I've seen deal with an incorrect version of the CLI.
.......
Your error points to sql 2005, while the image reflects sql client version as 11 suggesting it is sql server 2012. In this case the sql client library is the issue for the mismatch.
Under IPAll please change the port from 1433 to some other value to confirm and select enabled under IPAll. Try reconnect usin other port than 1433 (Ex:5022)
<<No connection could be made because the target machine actively refused it>>
Please temporarily disable your firewall if any and retry. Thanks

Get a FREE t-shirt when you ask your first question.
We believe in human intelligence. Our moderation policy strictly prohibits the use of LLM content in our Q&A threads.
Can you run the following commands in DOS prompt and post here the results?
setspn -L PC326VM01\SSEXPR12
setspn -L MSSQLAccount
Substitute MSSQLAccount by the account that is being used to run the SQL Server service.
True.
But first, let's eliminating the server configuration and firewall issues.






EARN REWARDS FOR ASKING, ANSWERING, AND MORE.
Earn free swag for participating on the platform.
C:\Program Files\Microsoft SQL Server\MSSQL11.SSEXPR12\MSSQL\DATA>setspn -L PC326VM01\SSEXPR12
FindDomainForAccount: Call to DsGetDcNameWithAccountW failed with return value 0
x0000054B
Could not find account SSEXPR12
C:\Program Files\Microsoft SQL Server\MSSQL11.SSEXPR12\MSSQL\DATA>setspn -L sa
FindDomainForAccount: Call to DsGetDcNameWithAccountW failed with return value 0
x0000054B
Could not find account sa
For the first SPN try to run with the server name only: setspn -L PC326VM01

Get a FREE t-shirt when you ask your first question.
We believe in human intelligence. Our moderation policy strictly prohibits the use of LLM content in our Q&A threads.
I am interested as well :)
Microsoft SQL Server
--
Questions
--
Followers
Top Experts
Microsoft SQL Server is a suite of relational database management system (RDBMS) products providing multi-user database access functionality.SQL Server is available in multiple versions, typically identified by release year, and versions are subdivided into editions to distinguish between product functionality. Component services include integration (SSIS), reporting (SSRS), analysis (SSAS), data quality, master data, T-SQL and performance tuning.