dbhub启动报错

dbhub启动报错,数据库是oracle 版本是11.2.0.4

看日志应该是不支持所连接的Oracle数据库版本。

直接使用官方的Docker部署更好用。
https://github.com/bytebase/dbhub

Oracle example

docker run --rm --init
–name dbhub
–publish 8080:8080
bytebase/dbhub
–transport sse
–port 8080
–dsn “oracle://username:password@localhost:1521/service_name”

Oracle example with thick mode for connecting to 11g or older

docker run --rm --init
–name dbhub
–publish 8080:8080
bytebase/dbhub-oracle-thick
–transport sse
–port 8080
–dsn “oracle://username:password@localhost:1521/service_name”