January 2018
Intermediate to advanced
446 pages
12h 57m
English
Assuming that innodb_data_file_path is ibdata1:50M:autoextend, the size has reached 76 MB, and your disk is just 100 MB, you can add another disk and configure to add another tablespace onto the new disk:
shell> sudo systemctl stop mysql
shell> sudo ls -lhtr /var/lib/mysql/ibdata1 -rw-r----- 1 mysql mysql 76M Oct 6 13:33 /var/lib/mysql/ibdata1
shell> sudo chown mysql:mysql /var/lib/mysql_extendshell> ...