1 post / 0 new
Cannot connect to H2 database engine version 1.4.199 or better

You may have followed the procedure to install the H2 database engine in our guides and you have confirmed that the H2 database engine is running and is accessible via a web browser, however Total Recall VR PC applications fail to connect to the database. The procedure in our guides instruct you to use the following configuration for the H2 database engine service (in the wrapper.conf file):

wrapper.app.parameter.1=org.h2.tools.Server
wrapper.app.parameter.2=-tcp
wrapper.app.parameter.3=-tcpPort 9092
wrapper.app.parameter.4=-tcpAllowOthers
wrapper.app.parameter.5=-web
wrapper.app.parameter.6=-webPort 8082
wrapper.app.parameter.7=-webAllowOthers
wrapper.app.parameter.8=-baseDir "C:\worktemp\db"

This configuration is adequate when using an H2 database engine 1.4.198 or prior. In order to use an H2 database engine version 1.4.199 or better you need to use the following configuration:

wrapper.app.parameter.1=org.h2.tools.Server
wrapper.app.parameter.2=-tcp
wrapper.app.parameter.3=-tcpPort 9092
wrapper.app.parameter.4=-tcpAllowOthers
wrapper.app.parameter.5=-web
wrapper.app.parameter.6=-webPort 8082
wrapper.app.parameter.7=-webAllowOthers
wrapper.app.parameter.8=-ifNotExists
wrapper.app.parameter.9=-baseDir "C:\worktemp\db"