如何终止用python写的socket服务端程序?
问题描述
用python写了一个socket服务端的程序,但是启动之后由于监听连接的是一个死循环,所以不知道怎样在cmd运行程序的时候将其终止。
#!/usr/bin/python# -*- coding: utf-8 -*-import socketimport threading, timedef tcplink(sock,addr): print(’Accept new connection from %s:%s...’ %addr) sock.send(b’Welcome!’) while True:data=sock.recv(1024)time.sleep(1)if not data or data.decode(’utf-8’)==’exit’: breaksock.send((’Hello,%s!’% data.decode(’utf-8’)).encode(’utf-8’)) sock.close() print(’Connection from %s:%s closed.’ % addr) s=socket.socket()s.bind((’127.0.0.1’,1234))s.listen(5)print(’Waiting for conection...’)while True: #accept a new connection sock,addr=s.accept() #create a new thread t=threading.Thread(target=tcplink,args=(sock,addr)) t.start()
在win10上的cmd运行后的情况是按ctrl+c,ctrl+z,ctrl+d都不能终止,请问要怎么终止程序?
问题解答
回答1:Ctrl + C
回答2:在启动线程之前,添加 setDaemon(True)
while True: #accept a new connection sock,addr=s.accept() #create a new thread t=threading.Thread(target=tcplink,args=(sock,addr)) t.setDaemon(True) # <-- add this t.start()
daemon
A boolean value indicating whether this thread is a daemonthread (True) or not (False). This must be set before start() iscalled, otherwise RuntimeError is raised. Its initial value isinherited from the creating thread; the main thread is not a daemonthread and therefore all threads created in the main thread default todaemon = False.
The entire Python program exits when no alive non-daemon threads areleft.
这样 <C-c> 的中断信号就会被 rasie。
回答3:kill -9回答4:
关闭cmd命令窗口,重新开启一个cmd,我是这么做的。
回答5:可以使用signal模块,当按住Ctrl+C时,捕捉信息,然后退出.
#!/usr/bin/env python# -*- coding: utf-8 -*-import signaldef do_exit(signum, frame): print('exit ...') exit()signal.signal(signal.SIGINT, do_exit)while True: print('processing ...')回答6:
我记得可以
try: ......except KeyboardInterrupt: exit()
相关文章:
1. node.js - nodejs中mysql子查询返回多行结果怎么处理?2. python3.x - python中import theano出错3. javascript - 我写的href跳转地址不是百度,为什么在有的机型上跳转到百度了,有的机型跳转正确4. 这段代码是获取百度收录量的!需要怎么设置才能获取百度快照旁边的网址呢?5. 设置python环境变量时不小心把原始path都删了,请问怎么恢复? win7 64位的6. python - mysql 如何设置通用型字段? 比如像mongodb那样7. mysql - spring data jpa 方法sql复杂查询?8. node.js - 微信的自动回复问题9. git - 使用淘宝npm安装hexo出现问题?10. python - pandas按照列A和列B分组,将列C求平均数,怎样才能生成一个列A,B,C的dataframe