본문 바로가기
카테고리 없음

Letsencrypt Error – Problem binding to port 443: Could not bind to IPv4 or IPv6.. Skipping

by 올엠 2020. 11. 19.
반응형

If you try to start to renew, you can meet this error

Problem binding to port 443: Could not bind to IPv4 or IPv6.. Skipping

This error simple to resolution is stop to web server and try to renew.

$ sudo apachectl stop
$ sudo certbot-auto renew
$ sudo apachectl start

If you want to renew automatic by cron. edit to this.

$sudo crontab -e
30 2 * * 1 apachectl stop&&/usr/local/sbin/certbot-auto renew >> /var/log/le-renew.log&&apachectl start
반응형