Re: No tray icon

2012-03-19 Thread Thomas Mueller
Hi If you use java -jar h2*.jar then it starts the Console (org.h2.tools.Console) and not the org.h2.tools.Server. Only the Console tool supports the -tool option. So you would need to use: java -cp ~/java/jars/h2-jdbc.jar org.h2.tools.Console -tcp -web -tool Regards, Thomas On Sat, M

No tray icon

2012-03-17 Thread Cecil Westerhof
Until today I used java -jar ~/java/jars/h2-jdbc.jar & to start the server. This also started a new browser instance and I do not want this. I found and use now: java -cp ~/java/jars/h2-jdbc.jar org.h2.tools.Server -tcp -web & This does not start a new browser instance, but it also does n