mirror of
https://github.com/standardebooks/web.git
synced 2025-07-10 00:30:28 -04:00
Fix MariaDB user config SQL
This commit is contained in:
parent
4b82ae394b
commit
d7e3e648ef
1 changed files with 5 additions and 5 deletions
|
@ -1,9 +1,9 @@
|
|||
create user 'alex'@'localhost' identified by unix_socket;
|
||||
create user 'se'@'localhost' identified by unix_socket;
|
||||
create user 'www-data'@'localhost' identified by unix_socket;
|
||||
create user 'alex'@'localhost' identified via unix_socket;
|
||||
create user 'se'@'localhost' identified via unix_socket;
|
||||
create user 'www-data'@'localhost' identified via unix_socket;
|
||||
|
||||
grant * on * to alex@localhost identified via unix_socket;
|
||||
grant select, insert, update, delete, execute, lock tables on se.* to se@localhost identified via unix_socket;
|
||||
grant select, insert, update, delete, execute on se.* to www-data@localhost identified via unix_socket;
|
||||
grant select, insert, update, delete, execute, lock tables on se.* to 'se'@'localhost' identified via unix_socket;
|
||||
grant select, insert, update, delete, execute on se.* to 'www-data'@'localhost' identified via unix_socket;
|
||||
|
||||
flush privileges;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue