2023-02-16, 11:58 AM
Yes, it means you forgot to stop the service.
Martin
Martin
2023-02-16, 11:58 AM
Yes, it means you forgot to stop the service.
Martin
2023-02-16, 01:54 PM
Oops!
This time, after stopping the service... When I run the command manually into the terminal, a lot of information is shown (see txt file), and I am asked to Ctrl-C to shut down. If I don't Ctrl-C, I can access the web page and logon. As soon as I Ctrl-C, the server is shut down.
2023-02-16, 02:33 PM
Nothing there looks like a 500 to me.
What do you see with curl -v http://localhost:8866/login.html Martin
2023-02-16, 02:52 PM
Here it is:
patrick@linux:~$ sudo service nextpvr-server restart [sudo] Mot de passe de patrick : patrick@linux:~$ curl -v http://localhost:8866/login.html * Trying 127.0.0.1:8866... * Connected to localhost (127.0.0.1) port 8866 (#0) > GET /login.html HTTP/1.1 > Host: localhost:8866 > User-Agent: curl/7.81.0 > Accept: */* > * Mark bundle as not supporting multiuse < HTTP/1.1 500 Internal Server Error < Content-Length: 0 < Date: Thu, 16 Feb 2023 14:50:24 GMT < Server: Kestrel < * Connection #0 to host localhost left intact
2023-02-16, 03:04 PM
Is it different if you try ipv4 and ipv6 variations?
curl -v http://127.0.0.1:8866/login.html curl -v http://[::1]:8866/login.html Martin
2023-02-16, 04:05 PM
No difference visible to me.
patrick@linux:~$ curl -v http://127.0.0.1:8866/login.html * Trying 127.0.0.1:8866... * Connected to 127.0.0.1 (127.0.0.1) port 8866 (#0) > GET /login.html HTTP/1.1 > Host: 127.0.0.1:8866 > User-Agent: curl/7.81.0 > Accept: */* > * Mark bundle as not supporting multiuse < HTTP/1.1 500 Internal Server Error < Content-Length: 0 < Date: Thu, 16 Feb 2023 16:04:41 GMT < Server: Kestrel < * Connection #0 to host 127.0.0.1 left intact patrick@linux:~$ patrick@linux:~$ curl -v http://[::1]:8866/login.html * Trying ::1:8866... * Connected to ::1 (::1) port 8866 (#0) > GET /login.html HTTP/1.1 > Host: [::1]:8866 > User-Agent: curl/7.81.0 > Accept: */* > * Mark bundle as not supporting multiuse < HTTP/1.1 500 Internal Server Error < Content-Length: 0 < Date: Thu, 16 Feb 2023 16:05:40 GMT < Server: Kestrel < * Connection #0 to host ::1 left intact patrick@linux:~$
2023-02-16, 04:19 PM
I didn't expect it would, worth the shot though. Maybe stop the service and delete npvr.db3 and config.xml from /var/opt/nextpvr to see if there is some corruption?
If that doesn't work did you install as root? If so maybe some file is locked, and you are supposed to install as a user. If you installed as root maybe try this as user sudo apt remove nextpvr-helper sudo apt purge nextpvr-helper then reinstall sudo apt install ../nextpvr-helper.deb Martin
2023-02-16, 05:17 PM
Hello Martin,
I tried everything you mentionned. Nextpvr was installed as a user. And unfortunatly no change. What surprises me is that it uses to work. As I am using Timeshift, I also tried to come back to a situation in the past. But results are the same. Some thing must have been changed on my config (maybe an ubuntu update?) This server is only used as a media center (and also Domoticz). I think I will do a complete reinstall of the whole system from scratch, it should not be too long. So don't waste your time on this issue. I will come back later after reinstallation (in a few weeks...) And again a big thank for the time you spent with me. Regards. Patrick |
|