How to solve the problem that MySQL cannot start because it cannot create temporary files

How to solve the problem that MySQL cannot start because it cannot create temporary files

Problem Description

I recently encountered a problem at work. MySQL failed to start. The error log was:

mysqld: Can't create/write to file '/tmp/ibfguTtC' (Errcode: 13)

Description: The /tmp directory cannot be written

Solution

Use the command ll -d /tmp to check the directory permissions.

Use chmod 1777 /tmp to set the correct permissions

Startup Success


Summarize

The above is the full content of this article. I hope that the content of this article can bring some help to your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • How to create a temporary folder in Python
  • How to create a temporary file in C#
  • Java creates a temporary file and then automatically deletes the file when the program exits
  • Unix programming to create a temporary file with a fixed prefix code sharing
  • Detailed example of creating a temporary file using File.createTempFile

<<:  JavaScript implementation of a simple addition calculator

>>:  How to use nginx to simulate blue-green deployment

Recommend

CSS implements Google Material Design text input box style (recommended)

Hello everyone, today I want to share with you ho...

WHMCS V7.4.2 Graphical Installation Tutorial

1. Introduction WHMCS provides an all-in-one solu...

Vue3+TypeScript implements a complete example of a recursive menu component

Table of contents Preface need accomplish First R...

Jenkins builds Docker images and pushes them to Harbor warehouse

Table of contents Dockerfile pom.xml Jenkins Conf...

How to set up a shared folder on a vmware16 virtual machine

1. Set up a shared folder on the virtual machine:...

Specific use of Linux which command

We often want to find a file in Linux, but we don...

Solutions to the problem of table nesting and border merging

【question】 When the outer table and the inner tab...

Will css loading cause blocking?

Maybe everyone knows that js execution will block...

MySQL database rename fast and safe method (3 kinds)

Table of contents How to rename MySQL database Th...

Detailed graphic explanation of sqlmap injection

Table of contents 1. We found that this website m...

Nginx merges request connections and speeds up website access examples

Preface As one of the best web servers in the wor...

Detailed explanation of the basic usage of the Linux debugger GDB

Table of contents 1. Overview 2. gdb debugging 2....