Welcome to Headwind MDM Q&A, where you can ask questions and receive answers from other members of the community.

Please do not post bug reports, missing feature requests, or demo inquiries. If you have such an inquiry, submit a contact form.

0 votes
Can Headwind MDM be installed on the server having ARM architecture?
by (34.3k points)

1 Answer

0 votes
All components of Headwind MDM are platform independent, so it must work on ARM servers.

We recommend using Docker: https://github.com/h-mdm/hmdm-docker

Change this line https://github.com/h-mdm/hmdm-docker/blob/master/Dockerfile#L3C1-L3C2

to:

FROM --platform=linux/arm64/v8 tomcat:9-jdk11-temurin-focal

Then build the image and it will work.

The tomcat:9-jdk11-temurin-focal image supports more architectures.

So just just use the --platform when building:

https://docs.docker.com/build/building/multi-platform/#building-multi-platform-images
by (34.3k points)
...