-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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
CPU does not support x86-64-v2 in the latest 8.4.0 #1055
Comments
Hi, Same here, affected by the same issue. the docker image was automatically updated in my system and since it is running oracle linux 9 started to failed. As workarround and emergency to get the site back online I switched to the debian image and updated mysql version to 8.4.0, here is the dockerfile content if help: FROM mysql:8.0-debian
# Remove mysql repo list file
RUN rm -f /etc/apt/sources.list.d/mysql.list
# Update package lists and upgrade existing packages
RUN apt update && apt install -y wget
# Download MySQL APT configuration package
WORKDIR /home/
RUN wget https://dev.mysql.com/get/mysql-apt-config_0.8.30-1_all.deb
# Install MySQL APT configuration package and select option 4 automatically
RUN DEBIAN_FRONTEND=noninteractive
RUN echo "4" | apt install -y ./mysql-apt-config_0.8.30-1_all.deb
RUN apt update && apt full-upgrade -y Then I executed: |
I don't think this is related to the version specifically but to #1047 which switched the oraclelinux base from 8 to 9 |
If you want to keep using oracle linux, you will need to pin to a tag prior to the update such as |
I'm also experiencing the same issue. Hoping it's a quick update to the docker image. Currently on vacation and can't manually downgrade. |
Assuming that If there are enough users requiring the orcalelinux8-based image because of CPU restrictions, it might make sense for us to continue to build both (until the first of OL8 and the MySQL version is EOL) since these users cannot move to the newer Oracle Linux release. So, if |
Confirmed that Oracle Linux 9 requires the
|
I swapped out mysql:latest to mysql:8.4.0-oraclelinux8 and that fixed my issue. Thanks! |
Our dev environment also broke, as we were working with mysql:8.0 tag, and now its pushing the image from 2 days ago last working verwion was 8.0.32, will validate if pushing this old image will fix the issue before finding this issue the workarround we did as devvms are running over proxmox, was to change the processor from kvm64(default) to Broadwell-no-TSX and 8.0.37 worked |
Our server running mysql:8 on a proxmox instance is now dead with this update. Error: |
Every active tag in official images can and will be updated to point to an image as new as the tag's specificity allows:
(And so on for Tags will also point to a rebuilt image in the parent image is updated. So, a new OL9 or Debian Bookworm image would cause those MySQL images from them to be rebuilt and the tags updated. |
fix container run error: "Fatal glibc error: CPU does not support x86-64-v2" Reference: docker-library/mysql#1055
fix container run error: "Fatal glibc error: CPU does not support x86-64-v2" Reference: docker-library/mysql#1055
fix container run error: "Fatal glibc error: CPU does not support x86-64-v2" Reference: docker-library/mysql#1055
The latest 8.4.0 image cannot run on older CPUs (maybe after upgrading to oracle linux 9).
The only message in docker logs is
Fatal glibc error: CPU does not support x86-64-v2
The text was updated successfully, but these errors were encountered: