Skip to content

Instantly share code, notes, and snippets.

@chris-at-github
Last active November 20, 2018 15:40
Show Gist options
  • Save chris-at-github/46d65d87c09c08d927f4487551bcc967 to your computer and use it in GitHub Desktop.
Save chris-at-github/46d65d87c09c08d927f4487551bcc967 to your computer and use it in GitHub Desktop.
# Datenbank einrichten
sudo mysql -u root
CREATE DATABASE NAME CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
GRANT ALL ON NAME.* TO 'USER' IDENTIFIED BY 'PASSWORT';
quit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment