Max Rydahl Andersen
Max Rydahl Andersen

Reputation: 3890

How to prevent the console browser from opening when launching the server ?

When launching java -cp h2-1.3.161.jar org.h2.tools.Server it always opens the console in a browser.

How can I prevent that ?

Upvotes: 1

Views: 715

Answers (1)

Max Rydahl Andersen
Max Rydahl Andersen

Reputation: 3890

Seems like java -cp h2-1.3.161.jar org.h2.tools.Server -tcp -web will do the trick.

Upvotes: 5

Related Questions