mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
7 lines
281 B
SQL
7 lines
281 B
SQL
# Create alfresco
|
|
CREATE USER 'alfresco' IDENTIFIED BY 'alfresco';
|
|
GRANT ALL on alfresco.* to 'alfresco'@'%' identified by 'alfresco' with grant option;
|
|
FLUSH HOSTS;
|
|
FLUSH PRIVILEGES;
|
|
# Create DB
|
|
CREATE DATABASE IF NOT EXISTS `alfresco` DEFAULT CHARACTER SET utf8 COLLATE utf8_bin; |