Kodi Community Forum

Full Version: dockerized mariadb & kodi
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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.
(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.
OK! Have reverted to mysql 5.7 and everything's running fine in docker.

Cheers!