Reputation: 91
I have created an instance of Windows server 2008 but it does not connect to RDP..........
I tried by using Remote Desktop Connection and RDP Extension of Chrome, but it ended with the same result.
It just displays that "Chrome does not connect to "
Should I do some changes with firewall or anything else????
How to Launch Windows VM Instance on Google Compute Engine.
Upvotes: 6
Views: 11221
Reputation: 15399
All I had to do was follow the instructions here.
Specifically I had to:
Run this command:
gcloud compute reset-windows-password windows-instance
Then connect using the user and password that was generated.
Upvotes: 0
Reputation: 1481
You should first check that port 3389 is open on the GCE firewall. If not, run a command like this to create the rule $ gcloud compute firewall-rules create rdp --allow tcp:3389 --source-ranges 0.0.0.0/0
. More info is available here.
Also, make sure you have the right username and password. This was set when you first created the instance. To check, please run $ gcloud compute instances describe INSTANCE_NAME --zone ZONE
and it will give you the initial user and password.
Upvotes: 10