Ssl

如何刪除openwrt ssl證書

  • October 8, 2017

我前段時間按照howto在openwrt上啟用了HTTPS 。

現在我在 Firefox 中收到證書警告,因為它已過期。如何刪除舊證書?

在 openwrt 盒子上打開一個 shell 並執行以下命令:

$ cd /etc
$ rm uhttpd.crt uhttpd.key
$ /etc/init.d/uhttpd restart

通過查看uhttpd命令行發現:

cat /proc/$(pgrep uhttpd)/cmdline | tr '\0' ' ' && echo

結果:

/usr/sbin/uhttpd -f -h /www -r 迫擊砲.carrier.duckdns.org -x /cgi-bin -u /ubus -t 60 -T 30 -k 20 -A 1 -n 3 -N 100 - R -C /etc/uhttpd.crt -K /etc/uhttpd.key -s 0.0.0.0:443 -s

$$ :: $$:443

引用自:https://unix.stackexchange.com/questions/396140