Reputation: 1090
I need to run a setup on my windows machine with 1 master and 2 workers on the same machine. I have setup the master to run on port 1111 and workers to run on 2222 & 2223. How can i access these ports to run my programs? I dont want to install VmWare or any virtual desktop.
I want to know how can I run a program on a specific port of my machine. If it requires a socket program, can someone provide a sample JAVA API for the same?
Upvotes: 1
Views: 5319
Reputation: 52185
You cannot run a program on a Port, what you can do is make your program listen to a port. Check this tutorial from Oracle for more information regarding Java Sockets
Upvotes: 7
Reputation: 27486
The Java Sockets API will allow you to specify the port number.
Upvotes: 0