@Дрегводастер said:
btw, I’m not on Windows, I’m on Ubuntu 16.4
same steps to do?
I have looked at your first set of logs. They are significant;y different from your first set.
1 It appears user plex does not properly own it’s data directories or permissions have been arbitrarily changed.
Dec 03, 2017 23:52:36.976 [0x7f4b16847800] ERROR - CERT: Found a certificate, but couldn't install it.
Dec 03, 2017 23:52:36.977 [0x7f4b16847800] ERROR - Couldn't delete the file /var/lib/plexmediaserver/Library/Application Support/Plex Media Server/Cache/certificate.p12: Permission denied
Dec 03, 2017 23:52:36.977 [0x7f4b16847800] ERROR - Couldn't delete the file /var/lib/plexmediaserver/Library/Application Support/Plex Media Server/Cache/ca.crt: Permission denied
Dec 03, 2017 23:52:36.977 [0x7f4b16847800] ERROR - Error reading file [/var/lib/plexmediaserver/Library/Application Support/Plex Media Server/Cache/relayHostKey.txt].
Dec 03, 2017 23:52:36.977 [0x7f4b16847800] DEBUG - Relay: read 0 cached entries from hosts file
Dec 03, 2017 23:52:36.977 [0x7f4b16847800] DEBUG - CERT: Unable to parse existing certificate, fetching a new one.
To correct this:
sudo sh
service plexmediaserver stop
chown -R plex:plex /var/lib/plexmediaserver
find /var/lib/plexmediaserver -type d -exec chmod 755 {} \;
find /var/lib/plexmediaserver -type f -exec chmod 644 {} \;
service plexmediaserver start
In your second set of logs, your network interfaces have problems.
Dec 03, 2017 20:07:25.597 [10616] DEBUG - HTTP requesting GET https://plex.tv/users/account.xml?auth_token=xxxxxxxxxxxxxxxxxxxx
Dec 03, 2017 20:07:25.602 [11188] DEBUG - NetworkInterface: ignoring adapter 'Wi-Fi' (fe80::f48e:2b3:4105:5d6d%11,169.254.93.109) because it has no gateway
Dec 03, 2017 20:07:25.602 [11188] DEBUG - NetworkInterface: ignoring adapter 'Local Area Connection* 1' (fe80::f1a5:f9be:777a:9da3%6,169.254.157.163) because it has no gateway
Dec 03, 2017 20:07:25.602 [11188] DEBUG - NetworkInterface: ignoring adapter 'Ethernet 2' (fe80::95ae:e55d:3932:e344%13,169.254.227.68) because it has no gateway
Dec 03, 2017 20:07:25.602 [11188] DEBUG - NetworkInterface: ignoring adapter 'Bluetooth Network Connection' (fe80::d171:929:1ce6:14a1%17,169.254.20.161) because it has no gateway
Dec 03, 2017 20:07:25.602 [11188] DEBUG - NetworkInterface: ignoring adapter 'Loopback Pseudo-Interface 1' (::1,127.0.0.1) because it has no gateway
Dec 03, 2017 20:07:25.603 [11188] DEBUG - Network interfaces:
Dec 03, 2017 20:07:25.603 [11188] DEBUG - * 16 {CF02AB35-E5B8-4EF9-9D77-632281BD389C} (192.168.100.2) (loopback: 0)
Dec 03, 2017 20:07:25.603 [11188] DEBUG - Creating NetworkServices singleton.
PMS requires IPv4. Specifically, the loopback adapter is IPv4 127.0.0.1 and not IPv6 ::1:127.0.0.1. Additionally, all metadata servers respond to IPv4 not IPv6.
I strongly recommend you do the following.
- Disable IPv6 in PMS (settings -server - network)
- Correct your host network configuration to make IPv4 the primary protocol. Disable IPv6 there unless you are required to use it.