Kodi Community Forum
dockerized mariadb & kodi - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: General Support (https://forum.kodi.tv/forumdisplay.php?fid=111)
+---- Forum: OS independent / Other (https://forum.kodi.tv/forumdisplay.php?fid=228)
+---- Thread: dockerized mariadb & kodi (/showthread.php?tid=318705)



dockerized mariadb & kodi - ventolin - 2017-07-23

Anyone have any experience using mariadb (10.2.6-MariaDB-10.2.6+maria~jessie) in docker with Kodi?

I just made the switch from a MySQL server running on bare metal (which worked fine). Sometimes it works perfectly, but I often have the problem that the clients cannot connect. In the db logs, I see hundreds of lines of:

Code:
db_1         | 2017-07-23 16:00:47 140643086067456 [Warning] Aborted connection 1262 to db: 'MyMusic60' user: 'xbmc' host: '192.168.92.25' (Got an error reading communication packets)
db_1         | 2017-07-23 16:00:47 140643086268160 [Warning] Aborted connection 1263 to db: 'MyMusic60' user: 'xbmc' host: '192.168.92.25' (Got an error reading communication packets)
db_1         | 2017-07-23 16:00:47 140643086268160 [Warning] Aborted connection 1264 to db: 'MyMusic60' user: 'xbmc' host: '192.168.92.25' (Got an error reading communication packets)
db_1         | 2017-07-23 16:00:47 140643086268160 [Warning] Aborted connection 1265 to db: 'MyMusic60' user: 'xbmc' host: '192.168.92.25' (Got an error reading communication packets)
db_1         | 2017-07-23 16:00:47 140643200857856 [Warning] Aborted connection 1266 to db: 'MyMusic60' user: 'xbmc' host: '192.168.92.25' (Got an error reading communication packets)

And so on. I googled this, came across the tip to increase the max_packet_size, which I did, but to no avail.

Just wondering if anyone else has this setup working - perhaps I'm doing something stupid here, or perhaps Kodi isn't compatible with mariadb.


RE: dockerized mariadb & kodi - asavah - 2017-07-23

(2017-07-23, 18:05)ventolin Wrote: or perhaps Kodi isn't compatible with mariadb.

^ that

AFAIK mariadb is not supported, I've tried running Kodi with mariadb some time ago, mariadb sucked.
10.x branch had nasty issues.
So far I've tried (and succeeded) to stay away from mariadb on production servers (not Kodi related).
I don't like Oracle either, but hey - it works.


RE: dockerized mariadb & kodi - ventolin - 2017-07-24

OK! Have reverted to mysql 5.7 and everything's running fine in docker.

Cheers!