In the folder lib
the file h2-1.3.174.jar
is located. You can
start the H2 data base with the following command:
java -jar h2-1.3.174.jar
If users from other systems should have access to the data base you can use the following command:
java -jar h2-1.3.174.jar -tcp -tcpAllowOthers
You have to insert the following command if you want to use the TCP port 51729
.
java -jar h2-1.3.174.jar -tcp -tcpPort 51729 -tcpAllowOthers
Further information to the H2 data base are given on the homepage H2 Tutorial.
Important | |
---|---|
You have to use Java 1.7 or lower. The file |