Closed sjdvda closed 4 years ago
Hi,
I'm getting a "503 Service Unavailable" error when I try to access the Web UI after the script runs.
The issue disappears when I change kill_and_wait $(pidof lighttpd) (line 71 in renew.acme.sh) to kill $(pidof lighttpd).
kill_and_wait $(pidof lighttpd)
kill $(pidof lighttpd)
On my system (EdgeRouter-X v2.0.8), running kill_and_wait $(pidof lighttpd) gives the following error:
vbash: kill_and_wait: command not found
Not sure if I did something wrong with the setup or there is an issue with the script.
Yup, I got the same issue too so I changed the command to killall instead.
killall
kill_and_wait was a function in the script so it's not available in your shell.
kill_and_wait
Hi,
I'm getting a "503 Service Unavailable" error when I try to access the Web UI after the script runs.
The issue disappears when I change
kill_and_wait $(pidof lighttpd)
(line 71 in renew.acme.sh) tokill $(pidof lighttpd)
.On my system (EdgeRouter-X v2.0.8), running
kill_and_wait $(pidof lighttpd)
gives the following error:Not sure if I did something wrong with the setup or there is an issue with the script.