顯示使用者和可以登入的ip
select User, Host from mysql.user;
建立使用者和授權可以登入ip
註:「%」代表不限制,也可以改為「localhost」只限本機或是指定的ip
create user 'username'@'%' identified by 'password';
給予所有權限,在所有資料庫上,給使用者
註:指定資料庫就是把「*.*」改為「databaseName.* 」
grant all privileges on *.* to 'username'@'%' identified by 'password';
留言
張貼留言
如果有任何問題、建議、想說的話或文章題目推薦,都歡迎留言或來信: a@ruyut.com