Yearning 面向中小型企业的轻量级MySQL SQL语句审核平台.提供查询审计,SQL审核等多种功能.
这里需要注意的是MySQL必须是>=5.7
版本以上
mysql> CREATE DATABASE yearning CHARACTER SET utf8mb4 COLLATE utf8mb4_bin;
mysql> grant all on yearning.* to ‘yearning‘@‘%‘ identified by ‘chinaedu‘;
启动
docker run -itd --name yearning --restart always -p 8000:8000 -e MYSQL_ADDR=172.16.3.226:3306 -e MYSQL_USER=yearning -e MYSQL_PASSWORD=chinaedu -e MYSQL_DB=yearning -e TZ="Asia/Shanghai" zhangsean/yearning:v2.3.2
测试:http://172.16.3.226:8000/#/login
默认密码: admin/Yearning_admin
MySQL里的表介绍:
mysql> show tables;
+----------------------------+
| Tables_in_yearning |
+----------------------------+
| core_accounts | # 保存用户信息
| core_auto_tasks | # 自动任务
| core_data_sources | # 数据源
| core_global_configurations | # 管理--设置详细信息
| core_graineds | # 用户权限
| core_query_orders | # 查询审计记录
| core_query_records | # 查询审计旁边的详细记录
| core_role_groups | # 权限组
| core_rollbacks | # 回滚sql
| core_sql_orders | # 工单审计记录
| core_sql_records | # 工单审计旁边的详细记录
| core_workflow_details | # 我的工单
| core_workflow_tpls | # 流程模板
+----------------------------+
13 rows in set (0.01 sec)
?