# 为特定用户添加服务器权限
GRANT ALL PRIVILEGES ON *.* TO 'username'@'server_ip' IDENTIFIED BY 'password';
# 刷新权限
FLUSH PRIVILEGES;
查看详情