Find the problem Recently, I found a problem at work. The problem was that the MySQL disk was full. I moved the database directory data to the /data3 directory, modified the corresponding datadir directory in /etc/my.cnf, and granted permissions. However, an error occurred when service mysql start; I won’t say much below. Let’s take a look at the detailed solution. The error log shows the following: 2017-09-15 16:01:01 2420 [Warning] Using unique option prefix myisam-recover instead of myisam-recover-options is deprecated and will be removed in a future release. Please use the full name instead. 2017-09-15 16:01:01 2420 [Note] Plugin 'FEDERATED' is disabled. ^G/usr/sbin/mysqld: Can't find file: './mysql/plugin.frm' (errno: 13 - Permission denied) 2017-09-15 16:01:01 2420 [ERROR] Can't open the mysql.plugin table. Please run mysql_upgrade to create it. 2017-09-15 16:01:01 2420 [Note] InnoDB: Using atomics to ref count buffer pool pages 2017-09-15 16:01:01 2420 [Note] InnoDB: The InnoDB memory heap is disabled 2017-09-15 16:01:01 2420 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins 2017-09-15 16:01:01 2420 [Note] InnoDB: Memory barrier is not used 2017-09-15 16:01:01 2420 [Note] InnoDB: Compressed tables use zlib 1.2.8 2017-09-15 16:01:01 2420 [Note] InnoDB: Using Linux native AIO 2017-09-15 16:01:01 2420 [Note] InnoDB: Using CPU crc32 instructions 2017-09-15 16:01:01 2420 [Note] InnoDB: Initializing buffer pool, size = 128.0M 2017-09-15 16:01:02 2420 [Note] InnoDB: Completed initialization of buffer pool 2017-09-15 16:01:02 2420 [ERROR] InnoDB: ./ibdata1 can't be opened in read-write mode 2017-09-15 16:01:02 2420 [ERROR] InnoDB: The system tablespace must be writable! 2017-09-15 16:01:02 2420 [ERROR] Plugin 'InnoDB' init function returned error. 2017-09-15 16:01:02 2420 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed. 2017-09-15 16:01:02 2420 [ERROR] Unknown/unsupported storage engine: InnoDB 2017-09-15 16:01:02 2420 [ERROR] Aborting First check the plugin.frm permissions. frm is the MySQL table structure definition file. Usually, the frm file will not be damaged. However, if the frm file is damaged under special circumstances, do not give up hope. When repairing MyISAM and InnoDB tables, the MySQL service will first call the frm file, so we can only perform subsequent data recovery by repairing the frm file. Then we found that plugin.frm has permissions and is also the owner of mysql: root@hutaojie-1-pdd-sh:/data1/mysql/mysql# ll plugin.* -rwxrwxrwx 1 mysql mysql 8586 Mar 6 2016 plugin.frm* -rwxrwx--x 1 mysql mysql 116 Mar 6 2016 plugin.MYD* -rwxrwx--x 1 mysql mysql 2048 Mar 6 2016 plugin.MYI* root@hutaojie-1-pdd-sh:/data1/mysql/mysql# After searching on Google, I found that the problem was with the OS. When installing Ubuntu's MySQL via yum or rpm, a /etc/apparmor.d/usr.sbin.mysqld file will be created. If the data directory is not in it, an error will be reported. /usr/sbin/mysqld: Can't find file: './mysql/plugin.frm' (errno: 13 - Permission denied) Workaround So the solution is to add a new datadir directory in it. root@huayuan:/var/lib# vim /etc/apparmor.d/usr.sbin.mysqld # vim:syntax=apparmor # Last Modified: Tue Jun 19 17:37:30 2007 #include <tunables/global> /usr/sbin/mysqld { #include <abstractions/base> #include <abstractions/nameservice> #include <abstractions/user-tmp> #include <abstractions/mysql> #include <abstractions/winbind> capability dac_override, capability sys_resource, capability setgid, capability setuid, network tcp, /run/mysqld/mysqld.pid rw, /run/mysqld/mysqld.sock w, /sys/devices/system/cpu/ r, #.........Write the new datadir directory here, write 2 lines, one line of r, and one line of rwk. /data3/mysql/ r, /data3/mysql/** rwk, # Site-specific additions and overrides. See local/README for details. #include <local/usr.sbin.mysqld> } Then restart the mysql instance, ok, the problem is solved. Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support for 123WORDPRESS.COM. You may also be interested in:
|
<<: Three ways to check whether a port is open in a remote Linux system
>>: JavaScript implements page scrolling animation
If the words in the sql statement conflict with t...
Prerequisites Need to install git Installation St...
When playing music, the lyrics will gradually fil...
<div class="box"> <img /> &...
Method 1: Download Pycharm and install Download a...
Kubernetes supports three types of authentication...
What is the reason for the Last_IO_Errno:1236 err...
B-tree is a common data structure. Along with him...
MySQL supports many data types, and choosing the ...
What are slots? We know that in Vue, nothing can ...
You can use yum to install all dependencies toget...
Table of contents 1. v-if 2. Use v-if on <temp...
Table of contents Overview definition Instance Me...
What is a file system We know that storage engine...
mysql-5.7.9 finally provides shutdown syntax: Pre...