themactep.com

A home of miscellaneous projects by Paul Philippov.

Notes

How to add a user in MySQL

GRANT ALL PRIVILEGES ON <database>.* TO '<user>'@'localhost' IDENTIFIED BY '<password>';
FLUSH PRIVILEGES;