Reputation: 23
I am using WSO2 Streaming Integrator (WSO2 SI) with default deployment settings which is based on H2 database, but I am not able to find a way to browse H2 database from http://localhost:8082
As I know, I have to configure it in deployment.yaml file udner SI_HOME/conf/server, but I can't find any reference in https://apim.docs.wso2.com/en/latest/streaming/streaming-overview/ documentation
Upvotes: 1
Views: 125
Reputation: 621
Please follow the below-mentioned steps to browse through the default H2 database.
[database_configuration] enable_h2_console = "true"
http://localhost:8082
JDBC URL: jdbc:h2:[file path to <SI_HOME>/repository/database/<DB>] username: wso2carbon password: wso2carbon
As the recommended practice please use any industry standard DBs when moving to production.
Upvotes: 0