Getting RDP Access what ports to use/open up? [closed] - remote-desktop

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I am currently attempting to get remote desktop server access to a different server, and that server admin was asking me what ports I was using. I was unsure to what he meant, and how I could find out this info ?
Thanks

If it's Windows remote desktop, then TCP port 3389 is what you need to tell him, although I'd like to think the admin should know that information!

If you are using the default configuration it will be port 3389 that the server is listening on. For non-standard configurations it can be anything, only the server administrator will be able to tell you.
http://en.wikipedia.org/wiki/Remote_Desktop_Protocol

Related

How can I do a telnet to a local HTTP server? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
I know how to do it to a remote server, it would be like:
telnet www.esqsoft.globalservers.com 80
But I don't know to a local server (written in C).
Simply substitute the hostname into the url, for example for a computer on your network with the hostname "LivingRoom", use the command
telnet LivingRoom 80.
For a server on own computer, simply use telnet localhost 80.

For sockets, which side does the majority of the work? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
For sockets, which side does the majority of the work?
I've been given this question to answer and don't really understand what it means. I've browsed through the web to find answers. However, nothing. So can somebody guide me to what it's actually asking? What it means?
Thanks!
Client should know the details of the server it connects to. The connect call is instantaneous.
But on the other hand the server should be continuously listening to a port for any incoming connections in the accept call.
So technically a server would take more of the processor time.
Once the connection is established the client and server pretty much has the same work in terms of sending and receiving messages.

Online DB on windows phone 8 [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I'm want to save some datas on an online db. How can I connect to an online database (SQLSERVER) on windows phone 8 ?
Thank you.
Dont connect directly to a database from a mobile phone. Use webservices either SOAP or REST. You are opening a can of worms by exposing your database directly to the internet.
Also if you want to expand and include other phones i.e. iPhone and Android to your database then you are going to have lots of different code to maintain.
See this answer Android access to remote SQL database for more information about this.

remote desktop overtaking someone else's disconnected session [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
We have one user account on the remote server. When computer A initiates a remote session, then disconnects from it, and computer B initiates a remote connection, computer B is being connected to the A's session.
How can I make sure that only the same device can reconnect to its remote session?
If it's a single user account I don't think you can. You need to make sure that they log off instead of disconnecting, then they can start a new session with the right account.
See here for more info.

How to access wordpress database? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
I do have the access for the ftp account for this wordpress website and I need to access to its database.
Where can I find it? It doesn't have a cpanel cause when I try to access www.sampleURL.com/cpanel it shows:
Not Found The requested URL /cpanel was not found on this server.
Is there any other way?
You can use one of phpmyadmin-like tools out there. You can get the login data by editing wp-config.php file from your wp root.
Well, you'd connect with the mysql client typically... you won't find the database with an FTP client.

Resources