This is an old revision of the document!
Follow this guide: https://developers.mattermost.com/contribute/server/developer-setup/
Make sure you have created mmuser
and granted access to the database mattermost_test
on your lokal mysql server:
CREATE DATABASE mattermost_test CHARACTER SET utf8 COLLATE utf8_general_ci; CREATE USER 'mmuser'@'localhost' IDENTIFIED BY 'mostest'; GRANT ALL PRIVILEGES ON *.* TO 'mmuser'@'localhost';