在 wso2 中配置 BPS DB 是 5.9.0 时,我必须在 MySQL 中导入哪些脚本?
While configuring BPS DB in wso2 is 5.9.0 , which scripts do i have to import in MySQL?
我正在关注这个文档-https://is.docs.wso2.com/en/5.9.0/setup/changing-datasource-bpsds/
deployment.toml Configurations.
[bps_database.config]
url = "jdbc:mysql://localhost:3306/IAMtest?useSSL=false"
username = "root"
password = "root"
driver = "com.mysql.jdbc.Driver"
Executing database scripts.
Navigate to <IS-HOME>/dbscripts. Execute the scripts in the following files, against the database created.
<IS-HOME>/dbscripts/bps/bpel/create/mysql.sql
<IS-HOME>/dbscripts/bps/bpel/drop/mysql-drop.sql
<IS-HOME>/dbscripts/bps/bpel/truncate/mysql-truncate.sql
现在create/mysql.sql创建table,其余两个文件负责删除和截断相同的table......... .....我该怎么办????????
谁也能说说BPS数据源的用例??????
请帮忙......
只有在需要使用 wso2 身份服务器中的工作流功能[1] 时,才应更改 bps 数据库。在本文档中提到 https://is.docs.wso2.com/en/5.9.0/setup/changing-to-mysql/
文档应该提到相关的数据库脚本。但这似乎是误导。因为它已请求执行所有三个脚本。如果您正在使用工作流程功能,只需使用
/dbscripts/bps/bpel/create/mysql.sql
在 mysql 数据库中创建表的脚本。
[1]。 https://is.docs.wso2.com/en/5.9.0/learn/workflow-management/
我正在关注这个文档-https://is.docs.wso2.com/en/5.9.0/setup/changing-datasource-bpsds/
deployment.toml Configurations.
[bps_database.config]
url = "jdbc:mysql://localhost:3306/IAMtest?useSSL=false"
username = "root"
password = "root"
driver = "com.mysql.jdbc.Driver"
Executing database scripts.
Navigate to <IS-HOME>/dbscripts. Execute the scripts in the following files, against the database created.
<IS-HOME>/dbscripts/bps/bpel/create/mysql.sql
<IS-HOME>/dbscripts/bps/bpel/drop/mysql-drop.sql
<IS-HOME>/dbscripts/bps/bpel/truncate/mysql-truncate.sql
现在create/mysql.sql创建table,其余两个文件负责删除和截断相同的table......... .....我该怎么办????????
谁也能说说BPS数据源的用例??????
请帮忙......
只有在需要使用 wso2 身份服务器中的工作流功能[1] 时,才应更改 bps 数据库。在本文档中提到 https://is.docs.wso2.com/en/5.9.0/setup/changing-to-mysql/
文档应该提到相关的数据库脚本。但这似乎是误导。因为它已请求执行所有三个脚本。如果您正在使用工作流程功能,只需使用 /dbscripts/bps/bpel/create/mysql.sql 在 mysql 数据库中创建表的脚本。
[1]。 https://is.docs.wso2.com/en/5.9.0/learn/workflow-management/