Saving debug log to /var/log/letsencrypt/letsencrypt.log
Plugins selected: Authenticator manual, Installer None
Obtaining a new certificate
An unexpected error occurred:
The server will not issue certificates for the identifier :: Error creating new order :: Cannot issue for "root@sub.mydomain.online": Domain name contains an invalid character
Please see the logfiles in /var/log/letsencrypt for more details.
And I found this in the log, wrong value for the dns (root@sub.mydomain.online):
That’s the log line of how Certbot translated your command line arguments.
Here’s an even lower level debugging technique. This will show exactly what your shell sent to Certbot, after the $VARIABLES have been substituted, but before Certbot receives any input:
What I’m trying to get at is that the input is probably wrong long before Certbot sees it. What you can do about it is to 1) confirm what the actual input is and 2) fix your input as required.
If you are running a common shell like bash, you can also try
set -o xtrace
and it will print very verbosely what it is running.
@_az
It turned out that -d *.mydomain.online is not valid any more and it should be wrapped in quotes, as you stated, but it’s not about shell. I’m just confused what has changed! I was using this command for a long time.