game/mysql/init/01-create-exporter-user.sql
2026-04-20 16:07:22 +08:00

5 lines
194 B
SQL
Executable File

-- 创建 MySQL Exporter 监控账号
CREATE USER IF NOT EXISTS 'exporter'@'%' IDENTIFIED BY 'exporter123';
GRANT PROCESS, REPLICATION CLIENT, SELECT ON *.* TO 'exporter'@'%';
FLUSH PRIVILEGES;