« Earlier 1 items total Later »

On this page: 

Creating a MySQL database and adding a user from CLI

mysql -uroot -p
mysql> CREATE DATABASE staff_hieraki;
mysql> GRANT ALL PRIVILEGES ON staff_hieraki.* TO staff@localhost IDENTIFIED BY 'password-goes-here' WITH GRANT OPTION;

« Earlier 1 items total Later »