摘要:
python代码# -*- coding: utf-8 -*- # encoding:utf-8 from flask import Flask, render_template, request, send_file,jsonify import os, requests import panda 阅读全文
posted @ 2025-01-21 12:25
liyixiang545
阅读(80)
评论(0)
推荐(0)
通过写脚本,杀掉对应服务的进程,从而关闭服务,直至启动服务 ps -ef | grep "服务名" | grep -v "grep" | awk '{print $2}' ps aux | grep "服务名" | grep -v "grep" | awk '{print $2}' tomcat_i 阅读全文