5 lines
194 B
SQL
Executable File
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;
|