yobasystems / alpine-mariadb

MariaDB running on Alpine Linux [Docker]
https://hub.docker.com/r/yobasystems/alpine-mariadb/
237 stars 71 forks source link

Rpi 2b 1gb model yobasystems/alpine-mariadb:10.4.17-arm32v7 error on creation of db container for nginx proxy manager #61

Closed sojab0on closed 2 years ago

sojab0on commented 2 years ago

[i] mysqld not found, creating.... [i] MySQL directory already present, skipping creation 2022-06-08 15:33:43 0 [Note] /usr/bin/mysqld (mysqld 10.4.17-MariaDB) starting as process 1 ... 2022-06-08 15:33:43 0 [Note] InnoDB: Using Linux native AIO 2022-06-08 15:33:43 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins 2022-06-08 15:33:43 0 [Note] InnoDB: Uses event mutexes 2022-06-08 15:33:43 0 [Note] InnoDB: Compressed tables use zlib 1.2.11 2022-06-08 15:33:43 0 [Note] InnoDB: Number of pools: 1 2022-06-08 15:33:43 0 [Note] InnoDB: Using generic crc32 instructions 2022-06-08 15:33:43 0 [Note] mysqld: O_TMPFILE is not supported on /var/tmp (disabling future attempts) 2022-06-08 15:33:43 0 [Note] InnoDB: Initializing buffer pool, total size = 128M, instances = 1, chunk size = 128M 2022-06-08 15:33:43 0 [Note] InnoDB: Completed initialization of buffer pool 2022-06-08 15:33:43 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority(). 2022-06-08 15:33:43 0 [ERROR] InnoDB: Unsupported redo log format. The redo log was created with MariaDB 10.6.7. 2022-06-08 15:33:43 0 [ERROR] InnoDB: Plugin initialization aborted with error Generic error 2022-06-08 15:33:44 0 [Note] InnoDB: Starting shutdown... 2022-06-08 15:33:45 0 [ERROR] Plugin 'InnoDB' init function returned error. 2022-06-08 15:33:45 0 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed. 2022-06-08 15:33:45 0 [Note] Plugin 'FEEDBACK' is disabled. 2022-06-08 15:33:45 0 [ERROR] Unknown/unsupported storage engine: InnoDB 2022-06-08 15:33:45 0 [ERROR] Aborting

This is the docker comopse file for docker setup version: '3' services: app: image: 'jc21/nginx-proxy-manager:latest' ports:

Any advise on fixing this

dominictayloruk commented 2 years ago

docker pull yobasystems/alpine-mariadb:10.6.7-arm32v7

version: '3'
services:
app:
image: 'jc21/nginx-proxy-manager:latest'
ports:
- '80:80'
- '81:81'
- '443:443'
volumes:
- ./config.json:/app/config/production.json
- ./data:/data
- ./letsencrypt:/etc/letsencrypt
db:
image: 'yobasystems/alpine-mariadb:10.6.7-arm32v7'
environment:
MYSQL_ROOT_PASSWORD: 'npm'
MYSQL_DATABASE: 'npm'
MYSQL_USER: 'npm'
MYSQL_PASSWORD: 'npm'
volumes:
- ./data/mysql:/var/lib/mysql
dominictayloruk commented 2 years ago

Thats an old image that has issues with armhf. See more here https://github.com/yobasystems/alpine-mariadb/issues/47