Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using the Jetty/Solr build that comes with Solr and would like to run it in the background instead of in the terminal.

Right now I start it by java -jar start.jar but I would like it to log to a file and run in the background on the server so that I can close the terminal window.

I'm sure there is some java config that I can't find.

I have tried java -jar start.jar > log.txt & but no luck still outputs to the terminal window.

Thanks.

share|improve this question
Thanks everyone! – user103219 Nov 29 '10 at 18:02

4 Answers

up vote 12 down vote accepted

Try something like:

nohup yourcommand > output.log 2>&1 &

nohup will prevent yourcommand from being terminated in the event you log out.

& will run it in the background.

> output.log will send stdout to output.log

2>&1 will redirect stderr to stdout

share|improve this answer
see stackoverflow.com/a/2900755/483728 – JohnS Mar 15 '12 at 1:56

You can run it with screen if you are on unix.

share|improve this answer

You may want to try nohup, as explained in this previous answer.

share|improve this answer

nohup is used to execute commands that runs after logout from a shell. What you need here is '2>&1'. This redirects standart error to the standart output. So everything will be logged to log.txt. Try this

java -jar start.jar > log.txt 2>&1

Also you can add an '&' start it as a background process.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.