Flush privileges

Must `FLUSH PRIVILEGES;` after granting.
pull/348/head
drakos 4 years ago committed by GitHub
parent 844840c6a8
commit f17c722f0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -85,6 +85,7 @@ For MySQL:
CREATE DATABASE postfix;
CREATE USER 'postfix'@'localhost' IDENTIFIED BY 'choose_a_password';
GRANT ALL PRIVILEGES ON `postfix` . * TO 'postfix'@'localhost';
FLUSH PRIVILEGES;
For PostgreSQL:
CREATE USER postfix WITH PASSWORD 'whatever';

Loading…
Cancel
Save