programing

MariaDB 10.1 도커 충돌 InnoDB

skycolor 2023. 10. 24. 21:10
반응형

MariaDB 10.1 도커 충돌 InnoDB

도커와 마리아DB 10.1에 오류가 있습니다.

이전 프로젝트에 대해 MariaDB 10.1 버전이 있어야 하므로 MariaDB를 업그레이드하지 않을 것입니다.

공식 MariaDB 10.1 GitHub을 팔로우하여 Docker 파일을 만들었습니다.컴파일은 되는데 시작이 안 돼요.

여기 나의 오류가 있습니다.

mariadb       | 2020-02-06 14:09:39+00:00 [Note] [Entrypoint]: Entrypoint script for MySQL Server 1:10.1.44+maria-1~bionic started.
mariadb       | 2020-02-06 14:09:40+00:00 [Note] [Entrypoint]: Switching to dedicated user 'mysql'
mariadb       | 2020-02-06 14:09:40+00:00 [Note] [Entrypoint]: Entrypoint script for MySQL Server 1:10.1.44+maria-1~bionic started.
mariadb       | 2020-02-06 14:09:40 140685262989312 [Note] mysqld (mysqld 10.1.44-MariaDB-1~bionic) starting as process 1 ...
mariadb       | 2020-02-06 14:09:40 140685262989312 [Note] InnoDB: Using mutexes to ref count buffer pool pages
mariadb       | 2020-02-06 14:09:40 140685262989312 [Note] InnoDB: The InnoDB memory heap is disabled
mariadb       | 2020-02-06 14:09:40 140685262989312 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
mariadb       | 2020-02-06 14:09:40 140685262989312 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
mariadb       | 2020-02-06 14:09:40 140685262989312 [Note] InnoDB: Compressed tables use zlib 1.2.11
mariadb       | 2020-02-06 14:09:40 140685262989312 [Note] InnoDB: Using Linux native AIO
mariadb       | 2020-02-06 14:09:40 140685262989312 [Note] InnoDB: Using SSE crc32 instructions
mariadb       | 2020-02-06 14:09:40 140685262989312 [Note] InnoDB: Initializing buffer pool, size = 256.0M
mariadb       | 2020-02-06 14:09:40 140685262989312 [Note] InnoDB: Completed initialization of buffer pool
mariadb       | 2020-02-06 14:09:40 140685262989312 [Note] InnoDB: Highest supported file format is Barracuda.
mariadb       | InnoDB: No valid checkpoint found.
mariadb       | InnoDB: A downgrade from MariaDB 10.2.2 or later is not supported.
mariadb       | InnoDB: If this error appears when you are creating an InnoDB database,
mariadb       | InnoDB: the problem may be that during an earlier attempt you managed
mariadb       | InnoDB: to create the InnoDB data files, but log file creation failed.
mariadb       | InnoDB: If that is the case, please refer to
mariadb       | InnoDB: http://dev.mysql.com/doc/refman/5.6/en/error-creating-innodb.html
mariadb       | 2020-02-06 14:09:40 140685262989312 [ERROR] Plugin 'InnoDB' init function returned error.
mariadb       | 2020-02-06 14:09:40 140685262989312 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
mariadb       | 2020-02-06 14:09:40 140685262989312 [Note] Plugin 'FEEDBACK' is disabled.
mariadb       | 2020-02-06 14:09:40 140685262989312 [ERROR] Unknown/unsupported storage engine: InnoDB
mariadb       | 2020-02-06 14:09:40 140685262989312 [ERROR] Aborting

이 오류를 무시하려면 어떻게 해야 합니까?

읽어주셔서 감사합니다.

언급URL : https://stackoverflow.com/questions/60097097/mariadb-10-1-docker-crash-innodb

반응형