主機(使用者主機)
主機可以是主機名或 IP 地址。此外,它可能涉及外卡。
GRANT SELECT ON db.* TO sam@'my.domain.com' IDENTIFIED BY 'foo';
示例:注意:這些通常需要引用
localhost -- the same machine as mysqld
'my.domain.com' -- a specific domain; this involves a lookup
'11.22.33.44' -- a specific IP address
'192.168.1.%' -- wild card for trailing part of IP address. (192.168.% and 10.% and 11.% are "internal" ip addresses.)
使用 localhost
依賴於伺服器的安全性。為了獲得最佳實踐,只應通過 localhost 允許 root
。在某些情況下,這些意思相同:0.0.0.1
和::1
。