/var/run/mysql does not exist in container image so this step will fail. Need to run the following prior to this step: sudo podman exec $(sudo podman container ls --all --format "{{ .Names }}" \ --filter=name=galera-bundle) mkdir /var/run/mysql; chown mysql:mysql /var/run/mysql Reported by: mflusche https://access.redhat.com/documentation/en-us/red_hat_openstack_platform/16.2/html/backing_up_and_restoring_the_undercloud_and_control_plane_nodes/assembly_restoring-the-undercloud-and-control-plane-nodes_br-undercloud-ctlplane#annotations:b62dd077-3a81-4776-92d6-102b03de5ffd
The folder does not exists in the container image, but following the procedure in the doc the folder is already there. If I execute the command proposed I get an error because the file already exists: [heat-admin@controller-1 ~]$ sudo podman exec $(sudo podman container ls --all --format "{{ .Names }}" \ > --filter=name=galera-bundle) bash -c "mkdir /var/run/mysql; chown mysql:mysql /var/run/mysql" mkdir: cannot create directory ‘/var/run/mysql’: File exists