473,399 Members | 3,038 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,399 software developers and data experts.

TCP servers in Python - two processes want to use same port

I am writing programs that will run as TCP servers. Briefly, I want to
set up a TCP server on a port in such a way that if another server is
already sitting on that port (both servers are Python programs I will be
writing), the old one is booted off (and its process ended).

My master process is a test harness, which tests a script which as part
of its functionality sends http GET messages. My test harness sets up
an http server as a child process, by creating an instance of
popen2.Popen3().

The child process is a very simple program using SimpleHTTPServer. The
problem is when I run my test harness, break it with Ctrl-C then try to
run it again. The http server complains that it cannot bind to the socket,
as the address is already in use.

My production system will use several http servers (I'm using http GET
messages as a simple form of inter-process communication), and I don't
want to have a situation where a program runs one time (because it's
asking to bind to a port that isn't already in use), but the next time,
it doesn't run because the port is being used.

Now of course I could use files to describe what ports are currently in
use and what process ids are using them, and kill the process before
trying to re-use the port, but that solution strikes me as inelegant.
Is there a better way? For example, is there a way of writing a program
that will force binding to a port, and if an existing process has that
port will kick it off (and possibly destroy it)?

--
Pif Paf
Jul 18 '05 #1
4 3451
Pif Paf wrote:

The child process is a very simple program using SimpleHTTPServer. The
problem is when I run my test harness, break it with Ctrl-C then try to
run it again. The http server complains that it cannot bind to the socket,
as the address is already in use.


I believe you should be looking at SO_REUSE_ADDR as a means of rebinding
to a socket that was just used recently and may still be active at the
OS level, even if the app that used it has exited.

As for the specific question about ways to kill the app that is listening
on a socket already: I think if you don't know which app it is, there
isn't a clean way to find out. If you do know, though, as your test
harness probably does, can't it just "kill -9" the thing?

-Peter
Jul 18 '05 #2
Pif Paf wrote:
I am writing programs that will run as TCP servers. Briefly, I want to
set up a TCP server on a port in such a way that if another server is
already sitting on that port (both servers are Python programs I will be
writing), the old one is booted off (and its process ended).

My master process is a test harness, which tests a script which as part
of its functionality sends http GET messages. My test harness sets up
an http server as a child process, by creating an instance of
popen2.Popen3().

The child process is a very simple program using SimpleHTTPServer. The
problem is when I run my test harness, break it with Ctrl-C then try to
run it again. The http server complains that it cannot bind to the socket,
as the address is already in use.

My production system will use several http servers (I'm using http GET
messages as a simple form of inter-process communication), and I don't
want to have a situation where a program runs one time (because it's
asking to bind to a port that isn't already in use), but the next time,
it doesn't run because the port is being used.

Now of course I could use files to describe what ports are currently in
use and what process ids are using them, and kill the process before
trying to re-use the port, but that solution strikes me as inelegant.
Is there a better way? For example, is there a way of writing a program
that will force binding to a port, and if an existing process has that
port will kick it off (and possibly destroy it)?

--
Pif Paf

I think you might have better luck in a TCP networking group, as this
isn't really a python question (unless python has some nify TCP api).
you might check into Twisted to see what's there for nifty apis.

If you're talking unix, you might want to spawn both servers as children
of the same parent. after launching both servers, the parent just waits
as a manager process. when the second child is unable to acquire the
port, it can signal the parent. the parent can send a stop/kill signal
to the child.

signaling a process requires the process id (pid). the children don't
know each others process ids. but they have their parent's process id.
The parent gets the process ids of all children.

not sure how that would apply in windows. don't think windows even has
signals. if so, you would have to substitute some other form of
interprocess communications.


Jul 18 '05 #3
Peter Hansen <pe***@engcorp.com> wrote in message news:<40***************@engcorp.com>...
Pif Paf wrote:

The child process is a very simple program using SimpleHTTPServer. The
problem is when I run my test harness, break it with Ctrl-C then try to
run it again. The http server complains that it cannot bind to the socket,
as the address is already in use.
I believe you should be looking at SO_REUSE_ADDR as a means of rebinding
to a socket that was just used recently and may still be active at the
OS level, even if the app that used it has exited.


I will give that a go.
As for the specific question about ways to kill the app that is listening
on a socket already: I think if you don't know which app it is, there
isn't a clean way to find out.
Clearly the operating system knows, so there should be a way to find out.
If you do know, though, as your test
harness probably does, can't it just "kill -9" the thing?


The test harness typically does know the process. However, if the test
harness stops without doing proper cleanup (e.g. deleting a child processes
it has created), then when it is restarted there will be "debris" from
the last run that is stopping it from running properly. This is not,
perhaps, a big issue when it's just the test harness, but it is a major
issue on the production system. If the production system goes down for
any reason, I want to be able to bring it back up again by typing one
command from the command line. This will run the master process, which in
turn will restart other processes, and it is not acceptable for an old
process to be clogging up a socket.

--
Pif Paf
Jul 18 '05 #4
Pif Paf wrote:
As for the specific question about ways to kill the app that is listening
on a socket already: I think if you don't know which app it is, there
isn't a clean way to find out.

Clearly the operating system knows, so there should be a way to find out.


The OS knows a lot more than your user space applications, and that
is a good thing, for security reasons.

--Irmen
Jul 18 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Paul Winkler | last post by:
This is driving me up the wall... any help would be MUCH appreciated. I have a module that I've whittled down into a 65-line script in an attempt to isolate the cause of the problem. (Real...
8
by: Rahul | last post by:
Hi. I am part of a group in my univ where we organize a programming contest. In this contest we have a UDP based server. The server simulates a game and each contestant is to develop a team of...
0
by: Danny Jensen | last post by:
I need to test if certain processes on a unix box were running. I wanted to use whatsup gold to do the testing. First I needed to go to the whatsup configure>monitors & services menu to add this...
9
by: john smile | last post by:
Hi All, I want to lock 2 tables on 2 servers using TABLOCKX hint. These tables function as semaphores in my application. It means when the tables are locked then other users will not be able to...
12
by: Jay | last post by:
ok, i thought for 2 seconds i might have created a Keylogger in python but i still have one major think stopping me... PYTHON. when i run the program i have python create a file named keylog2.log...
9
by: corey.coughlin | last post by:
Alright, so I've been following some of the arguments about enhancing parallelism in python, and I've kind of been struck by how hard things still are. It seems like what we really need is a more...
14
by: Rochester | last post by:
Hi, I just found out that the general open file mechanism doesn't work for named pipes (fifo). Say I wrote something like this and it simply hangs python: #!/usr/bin/python import os
5
by: walterbyrd | last post by:
I don't know much php either, but running a php app seems straight forward enough. Python seems to always use some sort of development environment vs production environment scheme. For...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.