Skip to content

Instantly share code, notes, and snippets.

@claylo
Created April 14, 2011 04:06
Show Gist options
  • Save claylo/918871 to your computer and use it in GitHub Desktop.
Save claylo/918871 to your computer and use it in GitHub Desktop.
Atlassian Crowd user and database setup for MySQL
CREATE USER 'crowduser'@'localhost' IDENTIFIED BY 'some_pass';
CREATE DATABASE crowd CHARACTER SET utf8 COLLATE utf8_bin;
GRANT ALL PRIVILEGES ON crowd.* TO 'crowduser'@'localhost';
FLUSH PRIVILEGES;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment