a.py
import multiprocessing
import os
import signal
import time
child_processes = []
def process1():
while True:
print(f"子进程运行中,其父pid是:{os.getpgid(os.getppid())}")
time.sleep(1)
if "__main__" == __name__:
a = multiprocessing.Process(target=process1)
a.daemon = True
a.start()
parent_pid = os.getpgid(os.getpid())
with open("/var/run/crawler.pid", 'w') as f:
f.write(str(os.getpid()))
a.join()
b.py
import os
import signal
with open('/var/run/crawler.pid', 'r') as f:
try:
pid = int(f.read())
os.kill(pid, signal.SIGTERM)
print("Signal sent successfully to process", pid)
except Exception as e:
print("Error sending signal:", e)