I'm experimenting with the CreateCluster tool.
I have two computers on my lan:
Computer A (Windows 10) on address 192.168.1.105
Computer B (Ubuntu) on address 192.1681.1.103
I take the following steps:
1. Create the database on Computer A using the console. The address is "jdbc:h2:~/cluster/test" (the db file is created).
2. Create the database on Computer B using the console. The address is "jdbc:h2:~/cluster/test" (the db file is created).
3. Start the tcp server on Computer A using cmd: "java -cp h2-*.jar org.h2.tools.Server -tcp -tcpPort 9101 -tcpAllowOthers"
4. Start the tcp server on Computer B using terminal: "java -cp h2-*.jar org.h2.tools.Server -tcpPort 9101 -tcpAllowOthers"