Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

45
votes
3answers
20k views

How do I put an already running process under nohup

I have a process that is already running for a long time and don't want to end it. How do I put it under nohup (i.e. how do I cause it to continue running even if I close the terminal?)
7
votes
2answers
334 views

Run a program from python, and have it continue to run after the script is killed

I've tried running things like this: subprocess.Popen(['nohup', 'my_command'], stdout=open('/dev/null', 'w'), stderr=open('logfile.log', 'a')) This works if the ...
7
votes
1answer
252 views

Is there a way to restore/recover nohup to see the output in the console?

I know chances are extremely low, but is there a way to see what a nohup-ed process has been outputting recently? I still have this process open but I've run it with redirecting all output to ...
7
votes
1answer
115 views

strange messages in log file @^@^@^@^@^@^@^@^@^@^@^@^@^@^@^

I have a application server for network operations written with Java based on Apache Mina. Recently I encounter a strange behavior in my log files. I noticed that the log file is full of ...
6
votes
1answer
352 views

python print statement with utf-8 and nohup

I have a some python code that prints log messages. When run at the command line, it does fine with utf-8. Log messages that contain special characters print out fine. However, when run in the ...
6
votes
2answers
293 views

How bash handles the jobs when logout?

As far as I understood from the books and bash manuals is that. When a user logs out from bash all the background jobs that is started by the user will automatically terminate, if he is not using ...
6
votes
2answers
915 views

Starting background tasks with Capistrano

For my RubyOnRails-App I have to start a background job at the end of Capistrano deployment. For this, I tried the following in deploy.rb: run "nohup #{current_path}/script/runner -e production ...
6
votes
6answers
4k views

sudo nohup nice <— in what order?

So I have a script that I want to run as root, without hangup and nicely. What order should I put the commands in? sudo nohup nice foo.bash & or nohup nice sudo foo.bash & etc. I suspect ...
5
votes
3answers
3k views

Why do unix background processes sometimes die when I exit my shell?

I wanted to know why i am seeing a different behaviour in the background process in Bash shell Case 1: Logged in to Unix server using Putty(SSH) By default it uses csh shell I changed to bash shell ...
4
votes
1answer
1k views

Can I change name of `nohup.out`?

When I run nohup some_command &, the output goes to nohup.out; man nohup says to look at info nohup which in turn says: If standard output is a terminal, the command's standard output is ...
4
votes
3answers
345 views

nohup SBCL ubuntu couldn't read from standard input

On Ubuntu I compiled sbcl 1.0.35 with threading. I can happily use sbcl from the command line and my hunchentoot website works with threading but when I logout it's gone. When I attempt to nohup sbcl ...
3
votes
1answer
94 views

Keep a process alive without nohup

I started a script on the server and did not use nohup, but I have to disconnect. Is there any way I can keep it running? Its a long 27 hr process.
3
votes
1answer
876 views

starting remote script via ssh containing nohup

I want to start a script remotely via ssh like this: ssh user@remote.org -t 'cd my/dir && ./myscript data my@email.com' The script does various things which work fine until it comes to a ...
3
votes
4answers
263 views

Java program stdout and detaching from foreground

I have a java program, let's say Test.class. When I execute java Test the program ask for a Password and then continute. The problem is that the stdout is redirected to a log and the program is ...
3
votes
2answers
2k views

PHP on a windows machine; Start process in background then Kill process

I'm looking for the best, or any way really to start a process from php in the background so I can kill it later in the script. Right now, I'm using: shell_exec($Command); The problem with this is it ...
2
votes
3answers
47 views

nohup VERBOSE=1 perl script.pl

I have a perl script for which ENV variables can be set to direct specific outputs e.g. $debug, $verbose, $develop etc Usually I run these from the command line $ VERBOSE=1 perl myperlscript.pl ...
2
votes
1answer
190 views

fabric can NOT call the remote script with nohup

In remote server, I have a script test.sh like: #!/bin/bash echo "I'm here!" nohup sleep 100& From local, I run 'fab runtest' to call the remote test.sh. def runtest(): run('xxxx/test.sh') ...
2
votes
4answers
659 views

How to run server script indefinitely

I would like to run an asynchronous program on a remote linux server indefinitely. This script doesn't output anything to the server itself(other than occasionally writing information to a mysql ...
2
votes
3answers
6k views

how to run a command in background using ssh and detach the session

I'm currently trying to ssh into a remote machine and run a script, then leave the node with the script running. Below is my script. However, when it runs, the script is successfully run on the ...
1
vote
1answer
32 views

using cron to make php-script starting countinous processes

I created a cronjob which call a php-script every 5mins. This PHP script needs to start several other PHP CLI scripts and keep them running in background even when the cron-script terminates. ...
1
vote
1answer
183 views

nohup and sed, redirecting stderr and stdout

On my server nohup sleep 1 > nohup.out & gives no help message. Good. Running the same command on my laptop, I get: nohup: ignoring input and redirecting stderr to stdout. Although the command ...
1
vote
1answer
59 views

How to run a non-OTP Erlang application on a remote server with nohup?

I have an Erlang code file which is not an OTP application. I do not use rebar. My Erlang script just does some calculations and writes result to the file result.txt. As the running time can be ...
1
vote
2answers
65 views

Bash Scripting - nohup, but then leave process running?

I've got a PHP script running a bunch of commands to execute bash scripts, via system() with nohup. The command line to call sh looks like:- system('nohup /home/me/script.sh %s %d %d 2>&1 ...
1
vote
2answers
120 views

Why is my nohup invalid in putty?

In my putty terminal, i typed the command as follows: [username@vm186 bin]$ nohup ./mongod --dbpath ~/mongodb-data/ & [1] 5967 [username@vm186 bin]$ nohup: appending output to `nohup.out' then, ...
1
vote
2answers
72 views

Embarrassingly simple bash scripting help

#!/bin/sh for i in {0..999} do if [$i lt 10] then nohup java BeginIndex ~actors/00{$i} ~/index_new/ > ~/results/actors_results/00{$i}.txt echo "INDEXING ($i)th ...
1
vote
2answers
162 views

why background process group die when terminal closed

According to this faq (and by many other books): ftp://rtfm.mit.edu/pub/faqs/unix-faq/programmer/faq 1.15 Why doesn't my process get SIGHUP when its parent dies? SIGHUP won't be sent to ...
1
vote
1answer
942 views

nohup: run PHP process in background

i try to run php processes in background and start this from an php file. Some informations: PHP Version 5.2.17, php safe_mode is off, linux system. I start the process with exec, tried already ...
1
vote
5answers
580 views

How do I keep a Perl script running on Unix after I log off?

I have a script that takes a lot of time to complete. Instead of waiting for it to finish, I'd rather just log out and retrieve it's output later on. I've tried; at -m -t 03030205 -f ...
1
vote
2answers
1k views

Shell_exec php with nohup

I think there are tons of similar posts but I haven't yet found a solution after searching around. Basically, I'm trying to run two scripts in the background. When I run them in the commandline, I ...
1
vote
1answer
363 views

java code and unix daemon

I'having a problem when trying to run my java code wit nohup : [root@ /]# nohup opt/jdk1.6.0_22/bin/java -cp "lib/hibernate/*:lib/tuscany-sca-1.6/lib/*:lib/tuscany-sca-1.6/modules/*:./*" ...
1
vote
3answers
1k views

nohup on windows, exec without waiting for finish - PHP

Is there something like that for windows ? exec("nohup /usr/bin/php -f sleep.php > /dev/null 2>&1 &"); cheers, /Marcin
1
vote
3answers
373 views

How does nohup work?

What is performed behind the scenes when a program runs with nohup? Is the PID of the parent process being changed? Thanks. EDIT: I understood that nohup (and disown) causes that SIGHUP is not sent ...
1
vote
2answers
506 views

Can I execute a multiline command in Perl's backticks?

In Unix, I have a process that I want to run using nohup. However this process will at some point wait at a prompt where I have to enter yes or no for it to continue. So far, in Unix I have been doing ...
1
vote
3answers
1k views

what's the nohup on windows

I want to run a java jar file like this: java -jar spider.jar how to run it on background on windows like this on linux: nohup java -jar spider.jar > /var/tmp/spider.log 2>&1 & ...
1
vote
2answers
876 views

Why can't I use Unix Nohup with Bash For-loop?

For example this line fails: $ nohup for i in mydir/*.fasta; do ./myscript.sh "$i"; done > output.txt& -bash: syntax error near unexpected token `do What's the right way to do it?
1
vote
3answers
487 views

How do I launch background jobs w/ paramiko?

Here is my scenario: I am trying to automate some tasks using Paramiko. The tasks need to be started in this order (using the notation (host, task)): (A, 1), (B, 2), (C, 2), (A,3), (B,3) -- ...
0
votes
2answers
35 views

Scp as background job?

Here is the problem: i must move some files from one host to another, ok i use scp for it. But i need use it without blocking console, so should use scp &. But my job will killed after ...
0
votes
1answer
25 views

How can I see what processes are running on a remote ubuntu server and kill them?

I started some processes with nohup and they aren't working correctly so I need to find and kill them but I dont know the pid or anything.
0
votes
1answer
134 views

Unable to truly background an SSH tunnel using Fabric and nohup

I can't seem to get Fabric to play nice with backgrounding a process that I've used nohup on. . . It should be possible, given various pieces of information, including here and here. def test(): h = ...
0
votes
1answer
49 views

SIGHUP: failed for SignalException with script/runner

Hi I am trying to run a script/runner process which failed because of SignalException: SIGHUP: The process nearly takes 4-5hrs. Can someone please let me know what exactly is happening and what would ...
0
votes
2answers
69 views

running nohup command on script that takes all parameters

I am trying to run a script with nohup, but the command happens to take an entire line of parameters with the variable $*. I try running the command like this: nohup time ./build_all all & ...
0
votes
0answers
61 views

Gearman STATUS shows stopped workers

I have some PHP Gearman workers running. To manage them they have some maintenance methods and one oh these methods is a method to restart the worker. This method starts a new worker like this: ...
0
votes
0answers
65 views

nohup redirect from variable in ksh script

I want to start my script with nohup from main script, like as: COMMAND="nohup ksh /home/user/my_script.ksh > /home/user/logs/output_of_my_script.log 2>&1 &" $($COMMAND) But, I get ...
0
votes
2answers
95 views

PHP Exec: Without Waiting, Without Discarding the Output, Without nohup

I need to run a command in PHP like this: exec('dosomething > saveit.txt'); Except I don't want PHP to wait for it to be complete. I also don't want to throw away the output, and I don't want to ...
0
votes
1answer
82 views

nohup not logging in nohup.out

I am running a python script of web2py and want to log its output. I am using following command nohup python /var/www/web2py/web2py.py -S cloud -M -N -R applications/cloud/private/process.py ...
0
votes
2answers
165 views

How to kill a nohup process?

I executed the following command $ nohup ./tests.run.pl 0 & now when I try to kill it (and the executions that are started from this script) using $ kill -0 <process_id> it does not ...
0
votes
2answers
71 views

bash command doesnt seem to work, but its echo does?

Well, I'm new to linux so this may be a very newbie kinda of thing, here it goes: I have a script in which I'm trying to send some different jobs to remote computers (in fact Amazon's EC2 instances), ...
0
votes
1answer
50 views

different behavior when run in nohup mode (linux shell)

I try to do string replacement in linux shell, str=2011/10/10 echo "$str" a=${str//\//\_} echo $a It can execute when I invoke command : ./test.sh But if I run it in nohup mode, using command : ...
0
votes
1answer
147 views

Using nohup to execute command very confused?

my script: #!/bin/bash . /home/was/.bash_profile export PATH=/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/home/was/bin:/wasdata/oracle/10.2.0/client_1/bin: sqlplus ...
0
votes
2answers
196 views

Running python script in background with nohup and timing it

Im running a python script on a remote server with the time command as follows: time python myscript.py SSH timeout occurs on the server after some time, so i also need to run it with nohup.So, i ...

1 2