-
Originally posted this on discord but sharing it here for future reference/better visibility to search engines: I appear to have misconfigured something when setting up or migrating my install. I was using an unsupported docker container (the linuxserver one) but just switched to the official one. nothing has changed in the database between the two (i checked and there are no pending migrations. both versions were relatively recent). When i try to do so via the UI, Im seeing a HUGE error pop up at the top that talks about needing RELOAD permissions in the DB:
I tried a DB command like |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
should have googled the error first. The permission needs to be granted globally via a command like Edit: i also saw someone on discord solve this with the command |
Beta Was this translation helpful? Give feedback.
-
I tried but failed. |
Beta Was this translation helpful? Give feedback.
should have googled the error first. The permission needs to be granted globally via a command like
GRANT ALL PRIVILEGES ON *.* TO 'snipe'@'%';
. I found this answer via https://stackoverflow.com/questions/9972651/flush-tables-access-deniedEdit: i also saw someone on discord solve this with the command
GRANT RELOAD ON * .* TO 'your_user'@'localhost';
in caseGRANT ALL PRIVILEGES
is scary for folks who use the same DB server for many things