2020-10-16, 16:45
I have setup my Kodi (17.6) device to use MySQL. On the backend I'm running MariaDB 10.
Created a Kodi user and gave full access from anywhere.
Creating my first video source on Kodi is working and I see the database gets created on the backend side.
Everything is fine untill I reboot the Kodi device. The video source cannot read anything any more.
What could be the issue?
advancedsettings.xml
Created a Kodi user and gave full access from anywhere.
Creating my first video source on Kodi is working and I see the database gets created on the backend side.
Everything is fine untill I reboot the Kodi device. The video source cannot read anything any more.
What could be the issue?
advancedsettings.xml
xml:
<advancedsettings>
<videodatabase>
<type>mysql</type>
<host>ip_of_mariadb</host>
<port>3307</port>
<user>kodi</user>
<pass>Test12345!</pass>
</videodatabase>
<musicdatabase>
<type>mysql</type>
<host>ip_of_mariadb</host>
<port>3307</port>
<user>kodi</user>
<pass>Test12345!</pass>
</musicdatabase>
<videolibrary>
<importwatchedstate>true</importwatchedstate>
<importresumepoint>true</importresumepoint>
<cleanonupdate>false</cleanonupdate>
</videolibrary>
<musiclibrary>
<backgroundupdate>true</backgroundupdate>
</musiclibrary>
<video>
<ignorepercentatend>10</ignorepercentatend>
<playcountminimumpercent>90</playcountminimumpercent>
<ignoresecondsatstart>60</ignoresecondsatstart>
</video>
</advancedsettings>