瓶子微框架一旦关闭就不会关闭插座



我用瓶子和python运行了一个API RestFul,一切正常,API是在系统中运行的守护进程,如果我通过命令行停止守护进程,服务会停止得很好并关闭所有端口和连接,但是当我通过API关闭服务时,端口在状态LISTEN和稍后的TIME_WAIT中保持活动状态, 它不会解放端口。我已经读了两天,但问题是因为瓶子有一个插座,它不能很好地关闭服务器,但我可以找到他的解决方案

关闭 API 即服务的代码是 python 启动的子进程,如下所示

@get('/v1.0/services/<id_service>/restart')
def restart_service(id_service):
try:
    service = __find_a_specific_service(id_service)
    if(service == None or len(service) < 1):
        logging.warning("RESTful URI: /v1.0/services/<id_service>/restart " +    id_service +" , restart a specific service, service does not exists")
        response.status = utils.CODE_404
        return utils.convert_to_json(utils.FAILURE, utils.create_failed_resource(utils.WARNING, utils.SERVICES_API_SERVICE_NOT_EXIST))
    else:
        if id_service != "API":
            api.ServiceApi().restart(id_service)
        else:
            import subprocess                
            args='/var/lib/stackops-head/bin/apirestd stop; sleep 5; /var/lib/stackops-head/bin/apirestd start'
            subprocess.Popen(args, shell=True)
        logging.info("RESTful URI: /v1.0/services/<id_service>/restart " + id_service +" , restart a specific service, ready to construct json response...")
        return utils.convert_to_json(utils.SERVICE, None)
except Exception, e:
    logging.error("Services: Error during the process of restart a specific service. %r", e)
    raise HTTPError(code=utils.CODE_500, output=e.message, exception=e, traceback=None, head

要从外部终止瓶子过程,请发送SIGINT。

如果应用程序退出或被杀死,则操作系统将关闭所有文件描述符/句柄(包括套接字)。

您也可以使用

sudo netstat -anp --tcp

以确保指定的端口是否由某些进程拥有。或使用

netstat -a -n -b -p tcp

在Windows中做同样的事情。

TIME_WAIT是由操作系统而不是应用程序管理的正常状态,以保持连接/端口一段时间。有时它很烦人。您可以调整操作系统的保留时间,但这并不安全。

最新更新