Bug Report
Describe the current, buggy behavior
With the latest version of wp-cli (2.12.0), I'm unable to run the wp db reset command without getting an error related to TLS. Using the mysql:8.0 docker image, the command results with:
ERROR 2026 (HY000): TLS/SSL error: self-signed certificate in certificate chain
I have to rollback to version 2.10.0 to have it working.
Steps to reproduce
- Download a brand new WP core package:
mkdir test-wpcli && cd test-wpcli
wget https://wordpress.org/latest.zip
unzip latest.zip
cd wordpress
cp wp-config-sample.php wp-config.php
services:
db:
image: mysql:8.0
command: --authentication-policy=mysql_native_password
environment:
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
MYSQL_DATABASE: wpcli
healthcheck:
test: ["CMD", "mysqladmin", "ping", "-h", "localhost"]
interval: 2s
timeout: 2s
start_period: 30s
retries: 30
wordpress-cli:
image: wordpress:cli-2.12.0-php8.4
depends_on:
db:
condition: service_healthy
volumes:
- .:/var/www/html
command: wp db reset --yes
- Run the
wp db reset command
docker compose run --rm wordpress-cli
You should get the following error:
Error: Failed to get current SQL modes. Reason: ERROR 2026 (HY000): TLS/SSL error: self-signed certificate in certificate chain
If you disable SSL on the mysql service with --ssl=0:
db:
command: --authentication-policy=mysql_native_password --ssl=0
The error message will change to:
Error: Failed to get current SQL modes. Reason: ERROR 2026 (HY000): TLS/SSL error: SSL is required, but the server does not support it
I have not been able to find a way to tell wp db reset to not use SSL.
Describe what you would expect as the correct outcome
The command should run without error and result with: Success: Database reset.
This is what I get if I use the wordpress:cli-2.10.0-php8.2 docker image.
Let us know what environment you are running this on
I'm running docker on a Ubuntu 22.04 server host.
Provide a possible solution
It may be related to: #278
Bug Report
Describe the current, buggy behavior
With the latest version of wp-cli (2.12.0), I'm unable to run the
wp db resetcommand without getting an error related to TLS. Using themysql:8.0docker image, the command results with:I have to rollback to version 2.10.0 to have it working.
Steps to reproduce
Edit wp-config.php:
Create the following docker-compose.yml file:
wp db resetcommandYou should get the following error:
If you disable SSL on the mysql service with
--ssl=0:The error message will change to:
I have not been able to find a way to tell
wp db resetto not use SSL.Describe what you would expect as the correct outcome
The command should run without error and result with:
Success: Database reset.This is what I get if I use the
wordpress:cli-2.10.0-php8.2docker image.Let us know what environment you are running this on
I'm running docker on a Ubuntu 22.04 server host.
Provide a possible solution
It may be related to: #278