6

When I reboot a Windows 2003 or Windows 2008 server via a Remote Desktop connection, the server comes back up and will not accept any RDP connections: the RDP client errors out with "Connection Refused."

The Terminal Services service is running on the server and restarting it has no effect. No errors are logged on the server.

The only way I've found to fix this is to login at the console or via the DRAC and reboot the machine again, which is an ugly solution for obvious reasons.

Has anyone run into this before?

sh-beta
  • 6,838
  • 7
  • 47
  • 66

3 Answers3

4

Yes, I've run into it on several different servers. Two workarounds have been reliable for me, 1) always use the /admin option of mstsc when starting the session that will initiate the reboot, or 2) use the shutdown command from another server to do the reboot.

SqlACID
  • 2,176
  • 18
  • 18
1

Does the server have multiple NICs? I've had similar issues when terminal services service binds to the wrong one. If that's case, see RDP - Remote Desktop disconnected, Error 2308 socket closed

Chris_K
  • 3,444
  • 6
  • 43
  • 45
0

EDIT - didnt read the entire question before submitting answer.

Have you tried resetting the terminal services session remotely?

at Command Prompt, type qwinsta /server:196.34.56.78

It will give you the following result:

SESSIONNAME USERNAME    ID  STATE   TYPE
console     0   Conn    wdcon
rdp-tcp     65536   Listen  rdpwd
rdp-tcp#8   Administrator   7   Active  rdpwd
rdp-tcp#9   Internet    8   Active  rdpwd

Choose the ID of the session that you would like to end and type: rwinsta /server:196.34.56.78 8

longneck
  • 23,082
  • 4
  • 52
  • 86
cop1152
  • 2,656
  • 3
  • 21
  • 32