Percona Server for MySQL 5.7.34-37 Released

May 26, 2021 - See release notes at Percona Server for MySQL 5.7.34-37 — Percona Server 5.7 Documentation

1 Like

Hi, how can I get the docker version of Percona 5.7.34-37? I didn`t find it on the official Percona page on the Docker Hub site (https://hub.docker.com/)

1 Like

Hi @Andrii_Yermakov
Here you can find all percona-server docker images: Docker Hub

So in order to get 5.7.34 version you need: docker pull percona/percona-server:5.7.34-37

2 Likes

It seems this image from percona/percona-server repo has some problems…
When I try to deploy Percona with percona:5.7.33 - there are not problems,
When I try to deploy Percona with percona/percona-server:5.7.33 - the container fails with errors:

mysqld: File '/var/lib/mysql/mysql-bin.log.index' not found (Errcode: 13 - Permission denied)

This error I got also with percona/percona-server:5.7.34-37
After that, I can deploy Percona with the image from the Official Image percona:5.7.33
Is it possible that images from percona/percona-server repo are not working or I need to do something else?
Thanks in advance

1 Like

hi @Andrii_Yermakov
I tried to reproduce the issue but without success
I was able to run correctly 5.7.33 and 5.7.34

vagrant@ubuntu-bionic:~/percona-docker/percona-server-5.7$ docker run --name container-name1 -e MYSQL_ROOT_PASSWORD=secret -d percona/percona-server:5.7.34-37
Unable to find image 'percona/percona-server:5.7.34-37' locally
5.7.34-37: Pulling from percona/percona-server
7a0437f04f83: Already exists 
11aba08bc95b: Pull complete 
vagrant@ubuntu-bionic:~/percona-docker/percona-server-5.7$ docker exec -it 53d92d1be562 bash
bash-4.4$ mysql -u root -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.7.34-37 Percona Server (GPL), Release 37, Revision 7c516e9

Copyright (c) 2009-2021 Percona LLC and/or its affiliates
Copyright (c) 2000, 2021, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> Bye
bash-4.4$ exit
vagrant@ubuntu-bionic:~/percona-docker/percona-server-5.7$
1 Like