在CentOS上的文件操作中操作系统错误号13?

时间:2013-12-13 11:03:08

标签: linux permissions centos mysql

我正在尝试更改mysql上的数据目录。但是得到以下错误:

121213 04:40:28 mysqld_safe mysqld from pid file /var/run/mysqld/mysqld.pid ended
121213 04:41:00 mysqld_safe Starting mysqld daemon with databases from /home/mysql_data
121213  4:41:00 [Warning] Can't create test file /home/mysql_data/localhost.lower-test
121213  4:41:00 [Warning] Can't create test file /home/mysql_data/localhost.lower-test
121213  4:41:00  InnoDB: Initializing buffer pool, size = 8.0M
121213  4:41:00  InnoDB: Completed initialization of buffer pool
121213  4:41:00  InnoDB: Operating system error number 13 in a file operation.
InnoDB: The error means mysqld does not have the access rights to
InnoDB: the directory.
InnoDB: File name ./ibdata1
InnoDB: File operation call: 'open'.
InnoDB: Cannot continue operation.

我在很多网站上都读到了一个权限问题。所以请告诉我如何执行这些操作因为我不太了解linux。

谢谢。

1 个答案:

答案 0 :(得分:3)

错误13 ==权限被拒绝。

您可以在/usr/include/sys/errno.h中看到完整列表。

在我的地方,我用

测试了这个
sudo mysqld -s /bin/bash

尝试更改mysql(/var/lib/mysql)的目录,如果我无法创建/删除那里的东西,这就是问题的原因。可能你可以使用一些chown / chmod命令解决这个问题,如果有些事情不重要,我正在等你的评论。