i noticed when i run the following:
and configure advancedsettings.xml to connect everything works great
BUT, when i reset my mysql setup and run this
xbmc will not connect or create the DB's?
why? the two DB's it would create and populate if given full access are myvideos75 and mymusic32, so how come when i isolate it to anything starting with "my" it wont work?
my problem is much deeper as i want to put my library on a mysql server that has much more running on it, so either a. i cant give DB creation access (so i have to create it manually which when i do xbmc wont play with it) or b. i can give temporary full access and reduce it once the DB's have been created by xbmc, but i am worried to do so because i have no clue what else is going on... why would it need more than those 2 dbs? i cant risk xbmc messing up the other DB's on my server.
Thanks,
-aPeg
Code:
CREATE USER 'xbmc' IDENTIFIED BY 'xbmc';
GRANT ALL ON *.* TO 'xbmc';
BUT, when i reset my mysql setup and run this
Code:
CREATE USER 'xbmc' IDENTIFIED BY 'xbmc';
GRANT ALL ON `my%`.* TO 'xbmc';
why? the two DB's it would create and populate if given full access are myvideos75 and mymusic32, so how come when i isolate it to anything starting with "my" it wont work?
my problem is much deeper as i want to put my library on a mysql server that has much more running on it, so either a. i cant give DB creation access (so i have to create it manually which when i do xbmc wont play with it) or b. i can give temporary full access and reduce it once the DB's have been created by xbmc, but i am worried to do so because i have no clue what else is going on... why would it need more than those 2 dbs? i cant risk xbmc messing up the other DB's on my server.
Thanks,
-aPeg