You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.
Like a lot of people, I installed Kanboard granting all privileges to the database to my kanboard user:
GRANT ALL PRIVILEGES ON kanboard.* TO 'username'@'localhost' IDENTIFIED BY 'password';
I was wondering what are the true minimal SQL privileges Kanboard needs to run normally.
I don't normally like to grant all privileges for security reasons and would really appreciate it if you could publish a minimal SQL database privileges list.
GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER, CREATE TEMPORARY TABLES ON databasename.* TO 'username'@'localhost' IDENTIFIED BY 'password';
Does Kanboard really need database level privileges like EVENT or CREATE ROUTINE? If not, why should I grant them?
I understand that different plugins may require different privileges and that you don't have control on that. I'm thus only asking for the minimal required privileges for Kanboard itself - minus all plugins - to work correctly.
The text was updated successfully, but these errors were encountered:
Hi!
Like a lot of people, I installed Kanboard granting all privileges to the database to my kanboard user:
I was wondering what are the true minimal SQL privileges Kanboard needs to run normally.
I don't normally like to grant all privileges for security reasons and would really appreciate it if you could publish a minimal SQL database privileges list.
I guess I'm expecting something like Drupal does.
At the database level, MySQL/MariaDB supports:
ALTERCREATECREATE ROUTINECREATE TEMPORARY TABLESCREATE VIEWDELETEDELETE HISTORYDROPEVENTINDEXINSERTLOCK TABLESREFERENCESSELECTSHOW VIEWTRIGGERUPDATEDoes Kanboard really need database level privileges like
EVENTorCREATE ROUTINE? If not, why should I grant them?I understand that different plugins may require different privileges and that you don't have control on that. I'm thus only asking for the minimal required privileges for Kanboard itself - minus all plugins - to work correctly.
The text was updated successfully, but these errors were encountered: