远程登录Linux(Ubuntu)环境下的mysql 时,如果直接在工具中创建数据库,会出现
1044-Access denied for user 'root'@'%' to database 'lc_db' 错误
1.原因:远程登录,创建数据库时,出现权限不足!
方案:
#Linux 中登录mysql mysql -urrot -p123456 #zks_zl_test_db要创建的数据库名称,创建数据库的账户root, 密码123456 grant all privileges on zks_zl_test_db.* to 'root'@'%' identified by '123456' with grant option;
2.权限赋值完毕就可以针对zks_zl_test_db进行创建和表的操作了!