Overview
- Full name
docker.io/percona/percona-xtradb-cluster- Registry
- docker.io
- Namespace
- percona
- Repository
- percona-xtradb-cluster
- Cached tags
- 247
- Last synced
- 07/05/2026, 11:45 AM
Introduction
Percona XtraDB Cluster 镜像,Galera 同步多主 MySQL 高可用集群,企业级 MySQL HA 与自动故障转移方案。
Details
percona/percona-xtradb-cluster 运行 Percona XtraDB Cluster(PXC),基于 Galera 提供同步多主 MySQL 复制与高可用。定位为 MySQL HA 集群节点,需 3+ 节点 quorum;金融/电商核心数据库 HA、零数据丢失 MySQL 集群或替代主从+MHA 方案。
快速启动
docker run -d --name pxc \
-p 3306:3306 \
-e CLUSTER_NAME=pxc-cluster \
-e MYSQL_ROOT_PASSWORD=changeme \
docker.io/percona/percona-xtradb-cluster:8.0
推荐实践
docker run -d --name pxc \
--restart unless-stopped \
-p 3306:3306 \
-e CLUSTER_NAME=pxc-cluster \
-e MYSQL_ROOT_PASSWORD=changeme \
-e WSREP_CLUSTER_ADDRESS=gcomm://pxc-1,pxc-2,pxc-3 \
-v /data/pxc:/var/lib/mysql \
docker.io/percona/percona-xtradb-cluster:8.0.35
核心参数说明
WSREP_CLUSTER_ADDRESS— 集群节点列表MYSQL_ROOT_PASSWORD— root 密码(高敏)- quorum — 建议 3 节点奇数
-v .../mysql:...— 数据持久化
Kubernetes
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: pxc
spec:
serviceName: pxc
replicas: 3
selector:
matchLabels:
app: pxc
template:
metadata:
labels:
app: pxc
spec:
containers:
- name: pxc
image: docker.io/percona/percona-xtradb-cluster:8.0.35
ports:
- containerPort: 3306
envFrom:
- secretRef:
name: pxc-secret
volumeMounts:
- name: data
mountPath: /var/lib/mysql
volumeClaimTemplates:
- metadata:
name: data
spec:
accessModes: [ReadWriteOnce]
resources:
requests:
storage: 100Gi
Headless Service 供 Galera 发现;3 节点 quorum。
Latest tags (20)
View all 247 tags →| Tag | Arch | Pushed At | Size | Digest | Sync | Wish | Action |
|---|---|---|---|---|---|---|---|
docker.io/percona/percona-xtradb-cluster :latest | linux/amd64linux/arm64 | 2026/04/17 02:16 | 370.5 MB | sha256:c901e20ed8bd… | |||
docker.io/percona/percona-xtradb-cluster :8.4 | linux/amd64linux/arm64 | 2026/04/17 02:16 | 370.5 MB | sha256:c901e20ed8bd… | |||
docker.io/percona/percona-xtradb-cluster :8.4.8 | linux/amd64linux/arm64 | 2026/04/17 02:15 | 370.5 MB | sha256:c901e20ed8bd… | |||
docker.io/percona/percona-xtradb-cluster :8.4.8-8.1 | linux/amd64linux/arm64 | 2026/04/17 02:15 | 370.5 MB | sha256:c901e20ed8bd… | |||
docker.io/percona/percona-xtradb-cluster :8.4.8-8.1-debug-arm64 | linux/arm64 | 2026/04/17 02:15 | 995.3 MB | sha256:8664dc15885e… | |||
docker.io/percona/percona-xtradb-cluster :8.4.8-8.1-arm64 | linux/arm64 | 2026/04/17 02:15 | 358.8 MB | sha256:a243c31fd34f… | |||
docker.io/percona/percona-xtradb-cluster :8.4.8-8.1-debug-amd64 | linux/amd64 | 2026/04/17 02:15 | 1018.6 MB | sha256:7c81b3f10c4c… | |||
docker.io/percona/percona-xtradb-cluster :8.4.8-8.1-amd64 | linux/amd64 | 2026/04/17 02:15 | 370.5 MB | sha256:c901e20ed8bd… | |||
docker.io/percona/percona-xtradb-cluster :8.0 | linux/amd64linux/arm64 | 2026/03/02 02:46 | 323.7 MB | sha256:e34f43f3f2d3… | |||
docker.io/percona/percona-xtradb-cluster :8.0.45 | linux/amd64linux/arm64 | 2026/03/02 02:46 | 323.7 MB | sha256:e34f43f3f2d3… | |||
docker.io/percona/percona-xtradb-cluster :8.0.45-36.1 | linux/amd64linux/arm64 | 2026/03/02 02:46 | 323.7 MB | sha256:e34f43f3f2d3… | |||
docker.io/percona/percona-xtradb-cluster :8.0.45-36.1-debug-arm64 | linux/arm64 | 2026/03/02 02:46 | 924.6 MB | sha256:322e9bb75c29… | |||
docker.io/percona/percona-xtradb-cluster :8.0.45-36.1-arm64 | linux/arm64 | 2026/03/02 02:46 | 312.9 MB | sha256:de0c0a9300e5… | |||
docker.io/percona/percona-xtradb-cluster :8.0.45-36.1-debug-amd64 | linux/amd64 | 2026/03/02 02:46 | 947.7 MB | sha256:c79593fde409… | |||
docker.io/percona/percona-xtradb-cluster :8.0.45-36.1-amd64 | linux/amd64 | 2026/03/02 02:46 | 323.7 MB | sha256:e34f43f3f2d3… | |||
docker.io/percona/percona-xtradb-cluster :8.0.44 | linux/amd64linux/arm64 | 2026/01/20 22:41 | 323.7 MB | sha256:34d7e23a42b9… | |||
docker.io/percona/percona-xtradb-cluster :8.0.44-35.1 | linux/amd64linux/arm64 | 2026/01/20 22:41 | 323.7 MB | sha256:34d7e23a42b9… | |||
docker.io/percona/percona-xtradb-cluster :8.0.44-35.1-debug-arm64 | linux/arm64 | 2026/01/20 22:41 | 924.3 MB | sha256:92c0c4025446… | |||
docker.io/percona/percona-xtradb-cluster :8.0.44-35.1-arm64 | linux/arm64 | 2026/01/20 22:41 | 313.0 MB | sha256:4e1bb902cc8f… | |||
docker.io/percona/percona-xtradb-cluster :8.0.44-35.1-debug-amd64 | linux/amd64 | 2026/01/20 22:41 | 947.3 MB | sha256:5cc29dae340d… |