Changing the tmp folder of mysql

前端 未结 6 906
我寻月下人不归
我寻月下人不归 2021-02-01 15:22

Our Mysql queries use temporary tables which creates temporary files in the process. Currently the files are written to /tmp. How exactly can the path of the temp folder to whic

6条回答
  •  鱼传尺愫
    2021-02-01 16:19

    You should edit your my.cnf

    tmpdir = /whatewer/you/want
    

    and after that restart mysql

    P.S. Don't forget give write permissions to /whatewer/you/want for mysql user

提交回复
热议问题