This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
guides:webserver:part2 [2021/07/27 17:48] admin |
guides:webserver:part2 [2022/07/04 12:09] (current) admin |
||
---|---|---|---|
Line 19: | Line 19: | ||
<code sql> | <code sql> | ||
create database coding; | create database coding; | ||
- | grant all on coding.* to coding_username@localhost identified by 'cheese'; | + | CREATE USER coding_username IDENTIFIED BY 'cheese'; |
+ | GRANT ALL privileges ON coding.* TO coding_username; | ||
quit; | quit; | ||
</code> | </code> |