How can I enable RDPing into an ec2 instance created from the template aws-windows
Created an ec2 instance with with windows server from the given aws-windows template and I need to RDP into it.
10 Replies
I use Coder OSS
you can port-forward to your local machine (
coder port-forward <workspace> 3389
)
otherwise use a solution like noVNC, I don't know if one exists for RDP though@Phorcys Can you expand on the port forwarding step?
@Programmer_remote124 you run that command on your personal computer
i edited the comma d
and then you RDP to localhost:3389
Something like this
coder port-forward test --tcp 3000:3389
?this should do it
then you connect to
localhost:3000
via the RDP clientI get no workspace found when I write https://localhost:3000
in the rdp client
Its working @Phorcys thank you
remove
https
it should be localhost
only. Also RDP listens on 3389 so do coder port-forward test 3389
This will map 3389 on the server to 3389 on your local host
then you can RDP localhost
it should work fine thenThank you @Atif
marking as resolved