This commit is contained in:
2023-11-21 16:46:22 +08:00
parent 7db14e6c9c
commit d54a0b84bb
3 changed files with 6 additions and 4 deletions

View File

@@ -16,9 +16,10 @@
- 默认登录账号 “admin/123456”, 登录后运行界面如下图所示。
- 数据库在源码中 xxl-job-2.3.1/doc/db/tables_xxl_job.sql
- 配置文件地址 /xxl-job/xxl-job-admin/src/main/resources/application.properties
- 导入数据库后 需要创建 用户密码
```
create user admin@'%' identified by '123456';
create user admin@'%' identified by 'Cm_dwh_1234';
grant all on xxl_job.* to admin@'%';
```