Python脚本在/ tmp /中创建目录,占用系统空间

时间:2019-05-08 16:55:51

标签: linux python-3.x filesystems tmp

我正在运行一个充当服务器的脚本,允许两个客户端连接到该服务器,并且对于一个特定的客户端向服务器发送消息,服务器会对其进行修改,然后再将其发送给另一个客户端。

这似乎起作用,因为接收客户端确认输入已收到并且有效。这是我打算连续运行的脚本。

但是,一个大问题是我的/ tmp /目录充满了名为_M...(代表随机字符串的椭圆)的目录,其中包含python模块(例如密码学),据我所知知道,我没有使用)和时区信息(实际上是python支持的每个时区)。似乎创建它们的频率很高,但是我无法确定过程中到底在执行什么操作。

我创建了一个有效的清理bash脚本,该脚本每5分钟从目录中删除5分钟之前的文件,但是,我不能保证当我为其他设备复制此过程时,这些目录将具有相同的名称格式。与其为我创建的每个进程创建一个唯一的bash脚本,倒不如希望能够从python脚本中清理目录,甚至更好,以防止根本无法创建目录。

问题是,我不确定这是如何实现的,并且我在SO上没有看到有关创建这些目录的内容以及如何删除它们的任何信息。

以下是我的脚本

import time, socket, os, sys, re, select

IP = '192.168.109.8'
PORT = [3000, 3001]
PID = str(os.getpid())
PIDFILE = "/path/to/pidfile.pid"
client_counter = 0
sockets_list = []

def runCheck():
    if os.path.isfile(PIDFILE):
        return False
    else:
        with open(PIDFILE, 'w') as pidfile:
            pidfile.write(PID)
        return True

def openSockets():
    for i in PORT:
        s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
        s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
        s.bind((IP, i))
        s.listen(1)
        sockets_list.append(s)

def receiveMessage(client_socket):
    try:
        message = client_socket.recv(2048).decode('utf-8')
        if not message:
            return False
        message = str(message)
        return message
    except:
        return False

def fixString(local_string):
    #processes
    return local_string

def main():
    try:
        openSockets()
        clients = {}
        print(f'Listening for connections on {IP}:{PORT[0]} and {PORT[1]}...')
        client_count = 0

        while True:
            read_sockets, _, exception_sockets = select.select(sockets_list, [], sockets_list)
            for notified_socket in read_sockets:
                if notified_socket == sockets_list[0] or notified_socket == sockets_list[1]:
                    client_socket, client_address = sockets_list[client_count].accept()
                    client_count = (client_count + 1) % 2
                    sockets_list.append(client_socket)
                    clients[client_socket] = client_socket
                    print('Accepted new connection from: {}'.format(*client_address))
                else:
                    message = receiveMessage(notified_socket)
                    if message is False:
                        continue

                    message = fixString(message)

                    for client_socket in clients:
                        if client_socket != notified_socket:
                            if message != "N/A":
                                client_socket.send(bytes(message, "utf-8"))
            for notified_socket in exception_sockets:
                sockets_list.remove(notified_socket)
                del clients[notified_socket]
            time.sleep(1)

    except socket.timeout:
        for i in sockets_list:
            i.close()
        os.remove(PIDFILE)
        sys.exit()
    except Exception as e:
        for i in sockets_list:
            i.close()
        err_details = str('Error in line {}'.format(sys.exc_info()[-1].tb_lineno), type(e).__name__, e)
        os.remove(PIDFILE)
        print("Exception: {}".format(err_details))
        sys.exit()

if __name__ == "__main__":
    if runCheck():
        main()
    else:
        pass

我应该如何设置它,以便python脚本删除它在/ tmp /目录中创建的目录,或者最好不要删除它们?任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

事实证明,正是PyInstaller生成了这些文件。在文档中,它指出pyinstaller在以单文件模式创建可执行文件时会生成此_MEI 目录,并且应该将其删除,但由于某种原因,它并没有删除。