当前位置: 首页 > news >正文

Can't create/write to file '/tmp/MLjnvU95' (Errcode: 13 - Permission denied)

今天一个同事反馈往一个MySQL数据库导入数据时,报ERROR 1 (HY000): Can't create/write to file '/tmp/MLjnvU95' (Errcode: 13 - Permission denied)这样的错误,如下所示:

 

 

uery OK, 0 rows affected (0.03 sec)

 

ERROR 1 (HY000): Can't create/write to file '/tmp/MLjnvU95' (Errcode: 13 - Permission denied)

ERROR 1 (HY000): Can't create/write to file '/tmp/MLPzmIbJ' (Errcode: 13 - Permission denied)

ERROR 1 (HY000): Can't create/write to file '/tmp/MLdpJwKm' (Errcode: 13 - Permission denied)

ERROR 1 (HY000): Can't create/write to file '/tmp/MLB7FTT0' (Errcode: 13 - Permission denied)

ERROR 1 (HY000): Can't create/write to file '/tmp/ML1wcUAF' (Errcode: 13 - Permission denied)

ERROR 1 (HY000): Can't create/write to file '/tmp/MLYjOzPk' (Errcode: 13 - Permission denied)

ERROR 1 (HY000): Can't create/write to file '/tmp/ML7gi9z0' (Errcode: 13 - Permission denied)

ERROR 1 (HY000): Can't create/write to file '/tmp/ML6nezQG' (Errcode: 13 - Permission denied)

 

clip_image001

 

 

个人使用source script.sql导入数据时,也是遇到这个错误,如上截图所示。从这个错误提示,可以明显看出是MySQL没有权限对/tmp进行操作,

 

 

查看系统变量tmpdir,如下所示,tmpdir变量指定路径为/tmp

 

 

mysql> show variables like 'tmpdir';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| tmpdir        | /tmp  |
+---------------+-------+
1 row in set (0.00 sec)
 
 
 
[root@mylx01 ~]# ls -lh /tmp
total 20M
-rw-rw-r--. 1 root root  20M Nov  7 12:04 cccc_user.sql
-rw-r--r--. 1 root root   57 Nov  7 02:00 percona-version-check
-rw-------. 1 root root 2.0K Nov  2 21:38 tmpP4BN3H
-rw-------. 1 root root 2.0K Oct 31 21:40 tmpusdOhs
-rw-------. 1 root root 2.0K Oct 30 21:36 tmp_WBZNO
-rw-------. 1 root root 2.1K Oct 29 21:38 tmpXcXptG
-rw-------. 1 root root 2.0K Nov  5 21:40 tmpyqSR0U
-rw-------. 1 root root 2.1K Oct 28 21:42 tmpZjNjtu

 

 

我们可以修改/tmp目录的权限; 或者修改数据库的临时目录来解决这个问题:

 

1:在配置文件my.cnf中修改数据库的临时目录,然后需要重启MySQL数据库

 

tmpdir = /var/lib/mysql

 

2:修改/tmp目录权限

 

chmod 1777 /tmp

chmod 777 /tmp

 

 

那么MySQL使用tmpdir来做什么呢?tmpdir是MySQL存临时文件的目录的路径名。如果未设置变量tmpdir,MySQL将使用系统的默认值,通常为/tmp、/var/tmp或/usr/tmp。更多详细信息,可以参考官方文档Where MySQL Stores Temporary Files的详细介绍:

 

 

MySQL arranges that temporary files are removed if mysqld is terminated. On platforms that support it (such as Unix), this is done by unlinking the file after opening it. The disadvantage of this is that the name does not appear in directory listings and you do not see a big temporary file that fills up the file system in which the temporary file directory is located. (In such cases, lsof +L1 may be helpful in identifying large files associated with mysqld.)

When sorting (ORDER BY or GROUP BY), MySQL normally uses one or two temporary files. The maximum disk space required is determined by the following expression:

 

(length of what is sorted + sizeof(row pointer))* number of matched rows

 * 2

 

The row pointer size is usually four bytes, but may grow in the future for really big tables.

For some SELECT queries, MySQL also creates temporary SQL tables. These are not hidden and have names of the form SQL_*.

DDL operations that rebuild the table and are not performed online using the ALGORITHM=INPLACE technique create a temporary copy of the original table in the same directory as the original table.

 

Online DDL operations may use temporary log files for recording concurrent DML, temporary sort files when creating an index, and temporary intermediate tables files when rebuilding the table. For more information, see Section 15.12.3, “Online DDL Space Requirements”.

 

InnoDB user-created temporary tables and on-disk internal temporary tables are created in a temporary tablespace file named ibtmp1 in the MySQL data directory. For more information, see Section 15.6.3.5, “Temporary Tablespaces”.

 

 

 

MySQL会以隐含方式创建所有的临时文件。这样,就能确保中止mysqld时会删除所有临时文件。使用隐含文件的缺点在于,在临时文件目录所在的位置中,看不到占用了文件系统的大临时文件。

 

进行排序时(ORDER BYGROUP BY),MySQL通常会使用1个或多个临时文件。所需的最大磁盘空间由下述表达式决定:

 

(length of what is sorted + sizeof(row pointer))

 

* number of matched rows

 

* 2

 

row pointer(行指针)的大小通常是4字节,但在以后,对于大的表,该值可能会增加。

 

对于某些SELECT查询,MySQL还会创建临时SQL表。它们不是隐含表,并具有SQL_*形式的名称。

 

ALTER TABLE会在与原始表目录相同的目录下创建临时表。

 

如果内存临时表超出了限制,MySQL就会自动地把它转化为基于磁盘的MyISAM表,存储在指定的tmpdir目录下。

 

 

 

 

 

参考资料:

 

https://dev.mysql.com/doc/refman/8.0/en/temporary-files.html

相关文章:

  • 互融云保理业务系统助力企业快速拓展业务
  • 如何利用MongoDB打造TOP榜小程序
  • 4.时间复杂度和空间复杂度-2
  • 你真的懂Redis事务吗?
  • MySQL-去重留一
  • *p=a是把a的值赋给p,p=a是把a的地址赋给p。
  • Presentational and Container Components
  • 使用Python一年多了,总结八个好用的Python爬虫技巧
  • IO的模式
  • [cogs2652]秘术「天文密葬法」
  • 【AliOS Things学习笔记】在Developerkit开发板上运行blink例程
  • 黑盒测试的测试方法
  • 开发阶段
  • angular2+ 生命周期
  • 可见面判别算法---光线投射算法
  • 深入了解以太坊
  • 【EOS】Cleos基础
  • Android优雅地处理按钮重复点击
  • HTTP中的ETag在移动客户端的应用
  • IndexedDB
  • JavaScript 奇技淫巧
  • JavaScript-Array类型
  • Laravel核心解读--Facades
  • leetcode讲解--894. All Possible Full Binary Trees
  • Markdown 语法简单说明
  • NSTimer学习笔记
  • php ci框架整合银盛支付
  • Twitter赢在开放,三年创造奇迹
  • ucore操作系统实验笔记 - 重新理解中断
  • VirtualBox 安装过程中出现 Running VMs found 错误的解决过程
  • Vue 重置组件到初始状态
  • vue--为什么data属性必须是一个函数
  • 从伪并行的 Python 多线程说起
  • 多线程 start 和 run 方法到底有什么区别?
  • 聚簇索引和非聚簇索引
  • 思考 CSS 架构
  • 一些关于Rust在2019年的思考
  • 原生Ajax
  • NLPIR智能语义技术让大数据挖掘更简单
  • Python 之网络式编程
  • RDS-Mysql 物理备份恢复到本地数据库上
  • 蚂蚁金服CTO程立:真正的技术革命才刚刚开始
  • ​油烟净化器电源安全,保障健康餐饮生活
  • (30)数组元素和与数字和的绝对差
  • (52)只出现一次的数字III
  • (Matalb分类预测)GA-BP遗传算法优化BP神经网络的多维分类预测
  • (多级缓存)缓存同步
  • (附源码)apringboot计算机专业大学生就业指南 毕业设计061355
  • (附源码)python房屋租赁管理系统 毕业设计 745613
  • (附源码)基于SSM多源异构数据关联技术构建智能校园-计算机毕设 64366
  • (附源码)计算机毕业设计SSM在线影视购票系统
  • (附源码)计算机毕业设计大学生兼职系统
  • (官网安装) 基于CentOS 7安装MangoDB和MangoDB Shell
  • (数位dp) 算法竞赛入门到进阶 书本题集
  • (转)ABI是什么