-
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
mysql:5.7 is broken #982
Comments
Last non-broken version: 5.7.7 |
Upgrade to 8.0.x fixed the issue in my case and worked well with the existing DB data |
As I understand it correctly, mysql |
https://forums.docker.com/t/mysql-5-7-docker-image-breaks-the-system/132678/3 Add these setting to solved the issue:
Worked in Manjaro / ArchLinux |
@smoothdvd Thanx that made it for me as well (on Arch): docker run --rm -p 3306:3306 --memory 1G --ulimit nofile=65536:65536 mysql:5.7.44 But I would call this an actual regression in MySQL (Oracle), not the fault of the Docker image. |
Unfortunately, MySQL 5.7 is now EOL upstream 🙇 ❤️ https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-44.html |
If you have 17 GB of free memory it will start (and use 17Gb of memory), if you don't have that much free memory it will fail with the following error:
It also uses a lot of CPU on startup.
8.0 works without these problems
The text was updated successfully, but these errors were encountered: