indigo-iam / iam-website

The INDIGO IAM Website source.

Home Page:https://indigo-iam.github.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Changes to Database example command needed in Docs with new MySQL versions

norealroots opened this issue · comments

In newer DB versions, the existing example:

GRANT ALL PRIVILEGES on iam_test_db.* to 'iam_test'@'%' identified by 'some_super_secure_password';

No longer works. Instead, one must now use:

CREATE USER 'iam_test'@'%' identified by 'some_super_secure_password';
GRANT ALL PRIVILEGES on iam_test_db.* to 'iam_test'@'%';

This renders the current documentation out of date.