mysql-innodb_file_per_table

mysql-innodb_file_per_table

Tengo una pregunta sencilla sobre el acceso a mysql mediante comando. Cuando intenté acceder a él como root, me devolvió un mensaje:

mysql: unknown option '--innodb_file_per_table'

¿Cómo haría que volviera a funcionar?


Gracias Rick. He logrado obtener acceso y el servidor está funcionando. Lo que me preocupa son muchos errores durante el inicio/detención/reinicio.

registro de errores

2020-12-17 19:16:40 0 [Note] InnoDB: Using Linux native AIO
2020-12-17 19:16:40 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
2020-12-17 19:16:40 0 [Note] InnoDB: Uses event mutexes
2020-12-17 19:16:40 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
2020-12-17 19:16:40 0 [Note] InnoDB: Number of pools: 1
2020-12-17 19:16:40 0 [Note] InnoDB: Using SSE2 crc32 instructions
2020-12-17 19:16:40 0 [Note] InnoDB: Initializing buffer pool, total size = 128M, instances = 1, chunk size = 128M
2020-12-17 19:16:40 0 [Note] InnoDB: Completed initialization of buffer pool
2020-12-17 19:16:40 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority       ().
2020-12-17 19:16:40 0 [Note] InnoDB: 128 out of 128 rollback segments are active.
2020-12-17 19:16:40 0 [Note] InnoDB: Creating shared tablespace for temporary tables
2020-12-17 19:16:40 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
2020-12-17 19:16:40 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
2020-12-17 19:16:40 0 [Note] InnoDB: 10.3.27 started; log sequence number 8459955162; transaction id 23688770
2020-12-17 19:16:40 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
2020-12-17 19:16:40 0 [Note] Plugin 'FEEDBACK' is disabled.
2020-12-17 19:16:40 0 [Note] Server socket created on IP: '127.0.0.1'.
2020-12-17 19:16:40 0 [Note] Reading of all Master_info entries succeeded
2020-12-17 19:16:40 0 [Note] Added new Master_info '' to hash table
2020-12-17 19:16:40 0 [Note] /usr/sbin/mysqld: ready for connections.
Version: '10.3.27-MariaDB-0+deb10u1'  socket: '/run/mysqld/mysqld.sock'  port: 3306  Debian 10
2020-12-17 19:16:40 0 [Note] InnoDB: Buffer pool(s) load completed at 201217 19:16:40

Respuesta1

Plan A (confuso y no recomendado): agregue esa opción a mysqld(el programa servidor, no mysqlun programa cliente).

Plan B: cambie la configuración en my.cnf(o donde sea que esté el archivo de configuración). Luego reinicie el servidor. (El reinicio depende del sistema operativo).

Plan C: inicie sesión como usuario "root" de mysql, haga SET GLOBAL innodb_file_per_table = 1;. De ahora en adelante (hasta que cierre sesión), las tablas que _esta conexión CREATEsserán archivo por tabla. Además, dado que esa configuración es "global", se aplicará a otras personas que inicien sesión.despuéshaciendo el SETyantesluego reinicie (o apague la bandera).

Plan D: (Solo en MySQL 8.0) Root puede hacerlo SETcon una PERSISTopción. (Pero no entraré en detalles).

Advertencia: varias configuraciones tienen diferentes reglas. Estos 4 planes funcionan paraalgunoajustes. Se aplican menos o más planes a otras configuraciones. Una pista es que la documentación dice si la configuración es "global" o "sesión" o ambas.

información relacionada