Lets Encrypt Auto Renew Quiet Mode Error

Solution 1:

Run certbot with the --nginx or --webroot parameter, as documented, to have it use your running nginx instead of starting it's open webserver.

certbot renew --quiet --nginx

or

certbot renew --quiet --webroot --webroot-path /var/www/html

Don't forget to also use the --deploy-hook parameter to reload your nginx after a successful renewal.

Note: you must install the nginx plugin if you haven't already installed it, with below command.

yum install python-certbot-nginx