Skip to content

Instantly share code, notes, and snippets.

@yurivictor
Created May 10, 2014 17:34
Show Gist options
  • Save yurivictor/5dd085a58a0faf58d12e to your computer and use it in GitHub Desktop.
Save yurivictor/5dd085a58a0faf58d12e to your computer and use it in GitHub Desktop.
mysql wordpress localhost db setup

mysql -u root

CREATE DATABASE dbname;

GRANT ALL PRIVILEGES ON dbname.* TO "root"@"localhost";

FLUSH PRIVILEGES;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment