2019-03-20, 20:52
hi all ive managed to install mysql 5.6 on my server.
im having some trouble getting kodi to actually create and populate its database.
i used the GRANT ALL ON *.* TO '*****';
when i was setting up my mysql user
the mysql user can create and access databases so i'm relay confused
here is my AS.xml
ive striped out my internal ip and username and pass for security hence 192.0.0.0 and *******
when i do SHOW DATABASES in my sql i get this
im having some trouble getting kodi to actually create and populate its database.
i used the GRANT ALL ON *.* TO '*****';
when i was setting up my mysql user
the mysql user can create and access databases so i'm relay confused
here is my AS.xml
Code:
<advancedsettings>
<videodatabase>
<type>mysql</type>
<host>192.0.0.00</host>
<port>3306</port>
<user>******</user>
<pass>******</pass>
</videodatabase>
<musicdatabase>
<type>mysql</type>
<host>192.0.0.0</host>
<port>3306</port>
<user>y*******</user>
<pass>*******</pass>
</musicdatabase>
</advancedsettings>
ive striped out my internal ip and username and pass for security hence 192.0.0.0 and *******
when i do SHOW DATABASES in my sql i get this
Code:
mysql> SHOW DATABASES;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
+--------------------+
3 rows in set (0.00 sec)