Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Closed
sojab0on opened this issue Jun 8, 2022 · 2 comments

Comments

@sojab0on
Copy link

sojab0on commented Jun 8, 2022

[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:
- '80:80'
- '81:81'
- '443:443'
volumes:
- ./config.json:/app/config/production.json
- ./data:/data
- ./letsencrypt:/etc/letsencrypt
db:
image: 'yobasystems/alpine-mariadb:10.4.17-arm32v7'
environment:
MYSQL_ROOT_PASSWORD: 'npm'
MYSQL_DATABASE: 'npm'
MYSQL_USER: 'npm'
MYSQL_PASSWORD: 'npm'
volumes:
- ./data/mysql:/var/lib/mysql

Any advise on fixing this

@dominictayloruk
Copy link
Member

dominictayloruk commented Jun 8, 2022

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
Copy link
Member

Thats an old image that has issues with armhf. See more here #47

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants