ブログ
【MySQL】MySQL5.7のユーザー追加
5.6とちょっと違う5.7。
今まで通りの感じではうまくいかなかったので調査
create user 'hoge'@'192.168.1.1'; set password for 'hoge'@'192.168.1.1'='password'; grant all on huga_db.* to 'hoge'@'192.168.1.1';
2行目・3行目のコマンドはいままで一行でできてたような。
5.6とちょっと違う5.7。
今まで通りの感じではうまくいかなかったので調査
create user 'hoge'@'192.168.1.1'; set password for 'hoge'@'192.168.1.1'='password'; grant all on huga_db.* to 'hoge'@'192.168.1.1';
2行目・3行目のコマンドはいままで一行でできてたような。