Can't find file: './mysql/plugin.frm' (errno: 13 - Permission denied)

mysql的数据库文件很大,把它放在安装磁盘上是不可取了,需要把它安装到另一块制定的磁盘上。

首先按照它的默认配置先把mysql搞起来,然后修改配置文件:vi /etc/my.cnf
Can't find file: './mysql/plugin.frm' (errno: 13 - Permission denied)_第1张图片
切换到新目录对新目录设置权限:chmod -R 755 /var/lib/mysql

[root@localhost log]# cd /mnt/sda3/mysql
[root@localhost mysql]# ls
auto.cnf  ibdata1  ib_logfile0  ib_logfile1  mysql  performance_schema
[root@localhost mysql]# ll
总用量 110604
-rw-rw----. 1 mysql mysql       56 12月 10 14:52 auto.cnf
-rw-rw----. 1 mysql mysql 12582912 12月 10 17:31 ibdata1
-rw-rw----. 1 mysql mysql 50331648 12月 10 17:31 ib_logfile0
-rw-rw----. 1 mysql mysql 50331648 12月 10 14:23 ib_logfile1
drwx------. 2 mysql mysql     4096 12月 10 17:31 mysql
drwx------. 2 mysql mysql     4096 12月 10 17:31 performance_schema
[root@localhost mysql]# chmod -R 755 /mnt/sda3/mysql
[root@localhost mysql]# ll
总用量 110604
-rwxr-xr-x. 1 mysql mysql       56 12月 10 14:52 auto.cnf
-rwxr-xr-x. 1 mysql mysql 12582912 12月 10 17:31 ibdata1
-rwxr-xr-x. 1 mysql mysql 50331648 12月 10 17:31 ib_logfile0
-rwxr-xr-x. 1 mysql mysql 50331648 12月 10 14:23 ib_logfile1
drwxr-xr-x. 2 mysql mysql     4096 12月 10 17:31 mysql
drwxr-xr-x. 2 mysql mysql     4096 12月 10 17:31 performance_schema

重启mysql:service mysqld restart,你会发现下面的错误。

2018-12-10 17:16:09 68716 [Note] Plugin 'FEDERATED' is disabled.
^G/usr/sbin/mysqld: Can't find file: './mysql/plugin.frm' (errno: 13 - Permission denied)
2018-12-10 17:16:09 68716 [ERROR] Can't open the mysql.plugin table. Please run mysql_upgrade to create it.

按照网上的方法玩了半天还是涛声依旧。请求火力支援,由大牛解决了这个顽疾。就是拷贝原来的数据库目录的文件到新的文件目录的父目录,注意层级关系:cp -a /var/lib/mysql /mnt/sda3/
重启服务service mysqld restart,一切ok。
Can't find file: './mysql/plugin.frm' (errno: 13 - Permission denied)_第2张图片

你可能感兴趣的:(mysql)