2020-05-19, 10:53
I've had a shared library running on a central server for a long time now, but I've always manually updated the library from a single client(1). That clients gong to be removed from the network, so now looking to update library from the others but this results in duplicate entries (stop the update as soon as I see this). Followed the guide section 5 here, additionally copying over the these files "sources.xml", "mediasources.xml" as well as the "advancedsettings" (which was already on the other clients), but problem remains. Welcome any ideas on how to solve this. Thanks in advance.
System:
Client 1 - Acer Revo RL80 (LibraElec - Kodi 18.6)
Client 2 - Firestick 4k (Kodi 18.6)
Client 3 - Firestick 4k (Kodi 18.6)
SQL dbs - Hosted on server (192.168.0.63)
Content - Hosted on server (192.168.0.63 or //OMV)
Advanced settings file added into userdata on all clients:-
mediasources.xml (Not sure why I used IP address in once case but hostname in another, but its always worked ok)
sources.xml
System:
Client 1 - Acer Revo RL80 (LibraElec - Kodi 18.6)
Client 2 - Firestick 4k (Kodi 18.6)
Client 3 - Firestick 4k (Kodi 18.6)
SQL dbs - Hosted on server (192.168.0.63)
Content - Hosted on server (192.168.0.63 or //OMV)
Advanced settings file added into userdata on all clients:-
Quote:<advancedsettings>
<videodatabase>
<type>mysql</type>
<host>192.168.0.63</host>
<port>3306</port>
<user>****</user>
<pass>****</pass>
</videodatabase>
<musicdatabase>
<type>mysql</type>
<host>192.168.0.63</host>
<port>3306</port>
<user>****</user>
<pass>****</pass>
</musicdatabase>
<videolibrary>
<importwatchedstate>true</importwatchedstate>
<importresumepoint>true</importresumepoint>
</videolibrary>
</advancedsettings>
mediasources.xml (Not sure why I used IP address in once case but hostname in another, but its always worked ok)
Quote:<mediasources>
<network>
<location id="0">smb://192.168.0.63/Movies</location>
<location id="1">smb://omv/TV</location>
</network>
</mediasources>
sources.xml
Quote:<sources>
<programs>
<default pathversion="1"></default>
</programs>
<video>
<default pathversion="1"></default>
<source>
<name>Movies</name>
<path pathversion="1">smb://192.168.0.63/Movies/</path>
<allowsharing>true</allowsharing>
</source>
<source>
<name>TV</name>
<path pathversion="1">smb://omv/TV/</path>
<allowsharing>true</allowsharing>
</source>
</video>
<music>
<default pathversion="1"></default>
</music>
<pictures>
<default pathversion="1"></default>
</pictures>
<files>
<default pathversion="1"></default>
</files>
<games>
<default pathversion="1"></default>
</games>
</sources>