I’m trying to play with inter-process communication and since I could not figure out how to use named pipes under Windows I thought I’ll use network sockets. Everything happens...
This question already has answers here: How can you find out which process is listening on a TCP or UDP port on Windows?...
I’m currently running a bunch of: sudo ssh -L PORT:IP:PORT root@IP where IP is the target of a secured machine, and PORT represents the ports I’m forwarding. This is...
From a bash script how can I quickly find out whether a port 445 is open/listening on a server. I have tried a couple of options, but I want...
Some web projects are causing me problems while others work fine. I decided to focus on one of the problematic ones. I’m using Visual Studio 2013 on Windows 7....
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....
How can I change the default port used by the play framework in development mode when issueing the “run” command on the play console. This is for playframework 2.0...
Is it possible to have a Docker container access ports opened by the host? Concretely I have MongoDB and RabbitMQ running on the host and I’d like to run...
I want to start a server which listen to a port. I can specify port explicitly and it works. But I would like to find a port in an...
what is process.env.PORT || 3000 used for in Node.js? I saw this somewhere: app.set('port', process.env.PORT || 3000); If it is used to set 3000 as the listening port, can...