How to launch YouTrack without letting it open a browser window?
I'm using Mac OS X. When I launch YouTrack from the command line by entering:
java -Xmx256m -jar /Applications/youtrack-3.0.4.jar 8000
I see that when YouTrack is loaded, it automatically opens a new browser window to display the main page; in this case it opens "http://localhost:8000/"
Is there a parameter I could add to *avoid* getting this behaviour?
What I'd like to achieve is to launch YouTrack quietly in the background.
Thank you very much.
Please sign in to leave a comment.
Add "-Djetbrains.youtrack.disableBrowser=true" to your command line.
For example: "java -Djetbrains.youtrack.disableBrowser=true -Xmx256m -jar /Applications/youtrack-3.0.4.jar 8000".
Thank you very much!