- A+
所属分类:数据库
今天一个测试同事反馈往一个测试环境MySQL数据库导入数据时,报错
拿到服务器登录查看错误日志报mysqld: Can't create/write to file '/tmp/ibIrugdc' (Errcode: 13 - Permission denied)错误。
似乎提示没有/tmp/ibIrugdc,第一反应是不是/tmp目录满了导致,毕竟之前运行都是好好的,赶紧查看了下,/tmp还有很大空间。
查看他们/tpm目录权限
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
[root@hryj-test tmp]# ll / 总用量 2757164 drwxr-xr-x. 4 root root 46 8月 23 2018 backup lrwxrwxrwx. 1 root root 7 6月 20 2018 bin -> usr/bin dr-xr-xr-x. 6 root root 4096 12月 18 15:40 boot drwxr-xr-x. 4 root root 33 11月 13 10:52 data drwxr-xr-x 20 root root 3540 2月 12 09:48 dev -rw-r--r-- 1 root root 409479 8月 15 2018 dump.rdb drwxr-xr-x. 183 root root 12288 2月 12 09:55 etc drwxr-xr-x 13 root root 188 1月 7 15:27 home -rw-r--r-- 1 root root 2822845114 12月 18 14:55 home.tar.gz lrwxrwxrwx. 1 root root 7 6月 20 2018 lib -> usr/lib lrwxrwxrwx. 1 root root 9 6月 20 2018 lib64 -> usr/lib64 drwxr-xr-x. 2 root root 6 4月 11 2018 media drwxr-xr-x. 2 root root 6 4月 11 2018 mnt drwxr-xr-x. 8 root root 143 12月 21 09:41 opt dr-xr-xr-x 287 root root 0 2月 10 18:56 proc dr-xr-x---. 36 root root 4096 3月 8 14:44 root drwxr-xr-x 48 root root 1460 3月 7 15:13 run lrwxrwxrwx. 1 root root 8 6月 20 2018 sbin -> usr/sbin drwxr-xr-x. 2 root root 6 4月 11 2018 srv dr-xr-xr-x 13 root root 0 2月 10 18:56 sys drwxr-xr-x 94 1004 27 40960 3月 8 16:30 tmp drwxr-xr-x. 14 root root 4096 6月 20 2018 usr drwxr-xr-x. 25 root root 4096 6月 20 2018 var |
发现问题,确实没有写入权限
解决
1 |
[root@hryj-test tmp]# chmod 777 /tmp |
然后重启mysql成功
- 我的微信
- 这是我的微信扫一扫
- 我的微信公众号
- 我的微信公众号扫一扫