Skip to content

Commit

Permalink
Update db commands with newer version (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
norealroots authored Jun 27, 2024
1 parent 3c3aa26 commit ecadf5d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion content/en/docs/getting-started/mariadb/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ commands can be used to create a database and a user for the IAM application:

```sql
CREATE DATABASE iam_test_db CHARACTER SET latin1 COLLATE latin1_swedish_ci;
GRANT ALL PRIVILEGES on iam_test_db.* to 'iam_test'@'%' identified by 'some_super_secure_password';
CREATE USER 'iam_test'@'%' identified by 'some_super_secure_password';
GRANT ALL PRIVILEGES on iam_test_db.* to 'iam_test'@'%';
```

You may want to restrict the set of hosts from which a mysql client can connect
Expand Down

0 comments on commit ecadf5d

Please sign in to comment.