Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to exit a server completely in python? Code like server.shutdown() just shuts down the incoming requests. Can anyone suggest any code for complete exit of server? It's a simple socketserver.

This is my code for server:

#!/usr/bin/python
import socket
from threading import Thread


class sockServer:

    def __init__(self,port):
        self.socket= socket.socket(socket.AF_INET, socket.SOCK_STREAM)
        self.socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
        self.socket.bind(port)
        self.socket.listen(5)

    def _run(self):
        while True:
            request, client_address =self.socket.accept()
            counter=self.req_thread(self,request)
            counter.start()

    class req_thread(Thread):
        def __init__(self,controller,request):
            Thread.__init__(self)
            self.controller=controller
            self.request=request
            self.setDaemon(True)

        def run(self):
            input=self.request.makefile('rb',0)
            output=self.request.makefile('wb',0)
            l=True
            i=0
            try:
                while l:
            l=input.readline()
            if l!="exit\r\n":
                        print "x"
                        output.write(bytes('hello\n'))
                    else:
            print "y"
                        self.request.shutdown(2)
            run=False

            except socket.error:
                pass


if __name__ == '__main__':

    import sys
    if len(sys.argv) < 3:
        print('Usage: %s [hostname] [port number]' % sys.argv[0])
        sys.exit(1)
    hostname = sys.argv[1]
    port = int(sys.argv[2])
    global run
    run=True
    while run:
        server=sockServer((hostname,port))
        server._run()

The method using the variable run isn't doing any good!

share|improve this question
1  
Fix the formatting of your code – esaelPsnoroMoN Sep 6 '12 at 7:06
1  
sys.exit(0) ??? – esaelPsnoroMoN Sep 6 '12 at 7:06

2 Answers

up vote 1 down vote accepted

If sys.exit isn't working then you can use a more extreme version which directly calls the os.

import os
os._exit()

You will have to do this if the server has forked a new process or thread. Which is what you are doing and why sys.exit isn't working as you expect. See this explanation of the difference between the two calls: What is difference between sys.exit(0) and os._exit(0)

share|improve this answer
it works!!thnx guys!! – jithin c Sep 6 '12 at 9:56

If you are just trying to exit the program completely then you can always add import sys and then in do this:

class req_thread(Thread):
    def __init__(self,controller,request):
        Thread.__init__(self)
        self.controller=controller
        self.request=request
        self.setDaemon(True)

    def run(self):
        input=self.request.makefile('rb',0)
        output=self.request.makefile('wb',0)
        l=True
        i=0
        try:
            while l:
        l=input.readline()
        if l!="exit\r\n":
                    print "x"
                    output.write(bytes('hello\n'))
                else:
        print "y"
                    self.request.shutdown(2)
                    sys.exit(0)
        run=False

        except socket.error:
            pass
share|improve this answer
the sys.exit() isnt working for the server. – jithin c Sep 6 '12 at 7:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.