You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
acozine edited this page Jun 12, 2013
·
14 revisions
Create the mysql databases for your production server.
Log in to mysql: mysql -u root -p
Enter mysql root pw, which you set when you configured mysql-server.
These instructions are shown with the mysql prompt and the expected output. To copy the commands into your shell, copy everything AFTER the > up to the semicolon; the expected output is shown in italics.
mysql> CREATE DATABASE hd_production; Query OK, 1 row affected (0.00 sec)
mysql>
GRANT ALL ON hd_production.* TO hdProd@localhost IDENTIFIED BY 'hdProd';