开发踩坑日志1 mysql,maven安装

初始化后需更新root用户
ALTER USER USER() IDENTIFIED BY ‘password’;
新增直接插入USER会报错,需要插入许多必输项,建议用以下方式
create user ‘user’@’%’ identified by ‘password’;
grant usage on . to ‘user’@’%’ with grant option;
grant select,insert,update,delete,create,drop on . to ‘user’@’%’ with grant option;

maven下载最新版在idea上运行报错No implementation for org.apache.maven.model.path.PathTranslator was bound.
需要下载旧版本的maven,本人回下载3.5.4亲测可用

你可能感兴趣的:(开发踩坑日志1 mysql,maven安装)