Please fill out the fields below so we can help you better. Note: you must provide your domain name to get help. Domain names for issued certificates are all made public in Certificate Transparency logs (e.g. https://crt.sh/?q=example.com), so withholding your domain name here does not increase secrecy, but only makes it harder for us to provide help.
My domain is:
krisfarley.org
I ran this command:
sudo certbot certonly --dry-run
It produced this output:
Saving debug log to /var/log/letsencrypt/letsencrypt.log
How would you like to authenticate with the ACME CA?
1: Apache Web Server plugin (apache)
2: Spin up a temporary webserver (standalone)
3: Place files in webroot directory (webroot)
Select the appropriate number [1-3] then [enter] (press âcâ to cancel): 1
Plugins selected: Authenticator apache, Installer None
Please enter in your domain name(s) (comma and/or space separated) (Enter âcâ
to cancel): krisfarley.org
Obtaining a new certificate
Performing the following challenges:
http-01 challenge for krisfarley.org
Enabled Apache rewrite module
Waiting for verificationâŚ
Challenge failed for domain krisfarley.org
http-01 challenge for krisfarley.org
Cleaning up challenges
Some challenges have failed.
IMPORTANT NOTES:
-
The following errors were reported by the server:
Domain: krisfarley.org
Type: connection
Detail: Fetching
http://krisfarley.org/.well-known/acme-challenge/GQTCb41e0Jc0W6kZmlN3hZCmDUYnGwd1BZyH1th74s4:
Error getting validation dataTo fix these errors, please make sure that your domain name was
entered correctly and the DNS A/AAAA record(s) for that domain
contain(s) the right IP address. Additionally, please check that
your computer has a publicly routable IP address and that no
firewalls are preventing the server from communicating with the
client. If youâre using the webroot plugin, you should also verify
that you are serving files from the webroot path you provided.
root@ubuntu:/home/ubuntu#
My web server is (include version):
apache 2
Server version: Apache/2.4.41 (Ubuntu)
Server built: 2020-04-13T17:19:17
The operating system my web server runs on is (include version):
ubuntu server 64 bit ver
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 20.04 LTS
Release: 20.04
Codename: focal
My hosting provider, if applicable, is:
my house, raspberry pi 3
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):
phpmyadmin Version information: 4.9.5deb2
The version of my client is (e.g. output of certbot --version
or certbot-auto --version
if youâre using Certbot):certbot 0.40.0
iâve checked that it is accessible from outside my network iâve also checked my firewall.
also found that apache is super hard to kill now and service apache2 stop doesnât stop it right away i have to go in manually and kill it
root@ubuntu:/var/www/html# ps aux | grep apache
root 3163 0.0 2.9 223140 27284 ? Ss Jun16 0:01 /usr/sbin/apache2 -k graceful
www-data 4190 0.0 1.8 256404 16960 ? Sl 00:24 0:00 /usr/sbin/apache2 -k graceful
www-data 4191 0.0 1.8 256404 16960 ? Sl 00:24 0:00 /usr/sbin/apache2 -k graceful
www-data 4192 0.0 1.8 256404 16900 ? Sl 00:24 0:00 /usr/sbin/apache2 -k graceful
www-data 4200 0.0 1.7 256356 16312 ? Sl 00:24 0:00 /usr/sbin/apache2 -k graceful
www-data 4202 0.0 1.7 256356 16312 ? Sl 00:24 0:00 /usr/sbin/apache2 -k graceful
root 4249 0.0 0.0 7684 644 pts/0 S+ 00:31 0:00 grep --color=auto apache
root@ubuntu:/var/www/html# kill 3163
root@ubuntu:/var/www/html# ps aux | grep apache
root 4251 0.0 0.0 7684 692 pts/0 S+ 00:32 0:00 grep --color=auto apache
root@ubuntu:/var/www/html# kill 4251
bash: kill: (4251) - No such process
root@ubuntu:/var/www/html#