MySQL/Writing file error (Errcode 28)

后端 未结 10 1991
慢半拍i
慢半拍i 2020-11-29 04:36

I have the following error with one of our web applications -

Query3 failed: Error writing file \'/tmp/MY1fnqpm\' (Errcode: 28) ... INSERT MailList... (remo         


        
10条回答
  •  心在旅途
    2020-11-29 04:40

    Use the perror command:

    $ perror 28
    OS error code  28:  No space left on device
    

    Unless error codes are different on your system, your file system is full.

提交回复
热议问题