Skip to content

Commit

Permalink
✨feature: 增加本地的 orchestrator 用户
Browse files Browse the repository at this point in the history
  • Loading branch information
Neeky committed Dec 13, 2024
1 parent da8f3a5 commit 971e2fb
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions dbma/static/cnfs/init-users.sql.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,17 @@ grant encryption_key_admin on *.* to 'mysqlbackup'@'localhost';
-- grant seelct on non-InnoDB_tbl to 'mysqlbackup'@'localhost';
grant innodb_redo_log_archive on *.* to 'mysqlbackup'@'localhost';


-- orchestrator
create user orc_server_user@'127.0.0.1' identified by 'OAi_z0v_82DBMA_E';
grant all on *.* to orc_server_user@'127.0.0.1';
create user orc_server_user@'localhost' identified by 'OAi_z0v_82DBMA_E';
grant all on *.* to orc_server_user@'localhost';

create user orc_topo_user@'127.0.0.1' identified by 'DBM_a0z_ae63Fu_S';
grant all on *.* to orc_topo_user@'127.0.0.1';
create user orc_topo_user@'localhost' identified by 'DBM_a0z_ae63Fu_S';
grant all on *.* to orc_topo_user@'localhost';
--

set @@sql_log_bin=1;
Expand Down

0 comments on commit 971e2fb

Please sign in to comment.