Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

5. Create a database for Drupal. Make note of your username and password as you will need it when the Drupal install script runs.

Code Block
languagesql

mysqladmin \-u <mysqlusername> \-p create <databasename>
mysql \-u <mysqlusername> \-p

enter your password

grant all on <databasename>.\* to <db_user_name>@<server> identified by '<password>';

flush privileges;

...