initSQL.md 607 B

CREATE DATABASE kgraph CHARACTER SET utf8 COLLATE utf8_general_ci; CREATE USER 'kgraph'@'localhost' IDENTIFIED BY '123456'; CREATE USER 'kgraph'@'127.0.0.1' IDENTIFIED BY '123456'; CREATE USER 'kgraph'@'::1' IDENTIFIED BY 'Password1'; grant all privileges on kgraph.* to 'root'@'%' identified by '123456'; grant all privileges on kgraph.* to 'root'@'localhost' identified by '123456'; grant all privileges on kgraph.* to 'root'@'127.0.0.1' identified by '123456'; grant all privileges on kgraph.* to 'root'@'::1' identified by '123456'; flush privileges;

use kgraph; source ./system.sql source ./quartz.sql