My domain is: smkfmartialarts.com
I ran this command: certbot -v
It produced this output:
Root logging level set at 10
Saving debug log to /var/log/letsencrypt/letsencrypt.log
Requested authenticator None and installer None
Apache version is 2.4.54
Killed
My web server is (include version):
Apache version is 2.4.54
The operating system my web server runs on is (include version):
Amazon EC2 Linux
amzn2-ami-kernel-5.10-hvm-2.0.20220912.1-x86_64-gp2
My hosting provider, if applicable, is:
AWS
I can login to a root shell on my machine (yes or no, or I don't know):
yes
I'm using a control panel to manage my site (no, or provide the name and version of the control panel):
No
The version of my client is (e.g. output of certbot --version
or certbot-auto --version
if you're using Certbot):
certbot 1.11.0
So after calling 'certbot -v', I got that output, and looking at the /var/log/letsencrypt/letsencrypt.log, it only contains:
cat /var/log/letsencrypt/letsencrypt.log
2022-10-17 16:29:47,338:DEBUG:certbot._internal.main:certbot version: 1.11.0
2022-10-17 16:29:47,338:DEBUG:certbot._internal.main:Location of certbot entry point: /bin/certbot
2022-10-17 16:29:47,338:DEBUG:certbot._internal.main:Arguments: ['-v']
2022-10-17 16:29:47,338:DEBUG:certbot._internal.main:Discovered plugins: PluginsRegistry(PluginEntryPoint#apache,PluginEntryPoint#manual,PluginEntryPoint#null,PluginEntryPoint#standalone,PluginEntryPoint#webroot)
2022-10-17 16:29:47,363:DEBUG:certbot._internal.log:Root logging level set at 10
2022-10-17 16:29:47,364:INFO:certbot._internal.log:Saving debug log to /var/log/letsencrypt/letsencrypt.log
2022-10-17 16:29:47,367:DEBUG:certbot._internal.plugins.selection:Requested authenticator None and installer None
2022-10-17 16:29:48,158:DEBUG:certbot_apache._internal.configurator:Apache version is 2.4.54
at which point certbot is killed by something.
I did a ps -ef for certbot to see if another copy is running and it is not..
I have also ran this line to remove any stale locks: find / -type f -name ".certbot.lock" -exec rm {} ;
Do you know of any reason why certbot gets killed after logging the apache version?
Thanks!