Hi Guys, Hoping you can help me. I am pretty sure that ports 8082, 9092 and 5435 are not already in use, yet I can't start h2 on the command line. I'm investigating this as part of debugging a maven build, which boots h2 in order to run database tests, but which just hangs instead.
Any clues? stewart@asimov:~/Downloads/h2/bin$ java -jar h2-1.3.158.jar The Web Console server could not be started. Possible cause: another server is already running at http://172.16.1.33:8082 Root cause: Exception opening port "H2 Console Server (http://172.16.1.33:8082)" (port may be in use), cause: "timeout" [90061-158] The TCP server could not be started. Possible cause: another server is already running at tcp://172.16.1.33:9092 Root cause: Exception opening port "H2 TCP Server (tcp://172.16.1.33:9092)" (port may be in use), cause: "timeout" [90061-158] The PG server could not be started. Possible cause: another server is already running at pg://172.16.1.33:5435 Root cause: Exception opening port "H2 PG Server (pg://172.16.1.33:5435)" (port may be in use), cause: "timeout" [90061-158] Exception in thread "main" org.h2.jdbc.JdbcSQLException: Exception opening port "H2 Console Server (http://172.16.1.33:8082)" (port may be in use), cause: "timeout" [90061-158] at org.h2.message.DbException.getJdbcSQLException(DbException.java:329) at org.h2.message.DbException.get(DbException.java:169) at org.h2.tools.Server.start(Server.java:377) at org.h2.tools.Console.runTool(Console.java:230) at org.h2.tools.Console.main(Console.java:100) ^Cstewart@asimov:~/Downloads/h2/bin$ netstat -an | grep 8082 stewart@asimov:~/Downloads/h2/bin$ netstat -an | grep 9092 stewart@asimov:~/Downloads/h2/bin$ netstat -an | grep 5435 stewart@asimov:~/Downloads/h2/bin$ stewart@asimov:~/Downloads/h2$ ./build.sh testNetwork Target: testNetwork localhost:localhost/127.0.0.1 localhost/127.0.0.1 localhost/0:0:0:0:0:0:0:1 getLocalHost:asimov/172.16.1.33 /172.16.1.33 byName:/172.16.1.33 ServerSocket[addr=0.0.0.0/0.0.0.0,port=0,localport=50146] server accepting client:/172.16.1.33:50146 java.net.SocketTimeoutException: connect timed out at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:351) at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:213) at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:200) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366) at java.net.Socket.connect(Socket.java:529) at org.h2.build.Build.testNetwork(Build.java:701) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java: 39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java: 25) at java.lang.reflect.Method.invoke(Method.java:597) at org.h2.build.BuildBase.invoke(BuildBase.java:241) at org.h2.build.BuildBase.runTarget(BuildBase.java:207) at org.h2.build.BuildBase.run(BuildBase.java:188) at org.h2.build.Build.main(Build.java:31) thread is still alive, interrupting done Done in 8120 ms ^C stewart@asimov:~/Downloads/h2$ stewart@asimov:~/Downloads/h2$ telnet localhost 50146 Trying ::1... Trying 127.0.0.1... telnet: Unable to connect to remote host: Connection refused stewart@asimov:~/Downloads/h2$ netstat -an | grep 50146 stewart@asimov:~/Downloads/h2$ -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/h2-database?hl=en.
