主机(用户主机)
主机可以是主机名或 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
。