ChinaUnix.net
相关文章推荐:

nohup 启动节点

忘记用nohup启动命令,如何补救,现在不能kill掉再起该进程。

by ymr - AIX - 2006-01-19 20:40:32 阅读(875) 回复(0)

相关讨论

nohup 后台启动程序,tail -f 日志,日志不刷为何?但是前台启动程序,前台刷日志,奇怪,高手指教?

by light511 - Shell - 2008-07-03 17:56:26 阅读(2721) 回复(9)

如题,试了一下好像不行,不知道有没有什么特殊写法?还有个问题就是rsh到其他主机执行命令的时候用的是什么环境变量的?

by tong1125 - Shell - 2006-06-04 11:42:33 阅读(954) 回复(3)

[root@test115 ~]# nohup: appending output to `nohup.out' [email=yujx@10.99.1.191]yujx@10.99.1.191's[/email] password: mjh9qskT -bash: mjh9qskT: command not found [10]+ Stopped nohup scp [email=yujx@10.99.1.191:/home/tmp/20090401/20090401.tar.gz]yujx@10.99.1.191:/home/tmp/20090401/20090401.tar.gz[/email] /home/tmp/20090401/ 上面怎么把我的密码当成command了,谁有好办法

by wtuter - Shell - 2009-04-01 22:05:52 阅读(887) 回复(3)

nohup /u2/dxbin/c003_1 >/tmp/1.dat > /tmp/null & nohup sz -b /tmp/1.dat >/tmp/null & sleep 10 哪里不对啊!运行时出现Sending output to nohup.out

by celery2199 - Shell - 2006-02-24 11:09:03 阅读(2146) 回复(9)

请教:用nohup执行脚本,但退出终端后脚本停掉。请问问题出在哪里? 命令如下,aaa为可执行的脚本: nohup aaa &

by DesertEagle888 - HP-UX - 2004-04-27 14:42:52 阅读(602) 回复(1)

以前是用手工启动的后台运行两个用户 用户名 mike cd /usr/mike nohup ./start.sh & 用户名 sun cd /usr/sun nohup ./start.sh & 今天试试想这个命令写在rc3.d里面自动启动 在/etc/rc3.d中建了个文件 :S20mikestart #!/bin/bash su - mike -c nohup /usr/mike/start.sh & su - sun -c nohup /usr/sun/start.sh & 重启系统发现两个用户的start.sh没有自动执行 如果这样写就能自动执行,但是启动的用户变成了root #!/bin/b...

by 不进一环 - Shell - 2009-07-17 15:27:09 阅读(1080) 回复(2)

$nohup >nohup.out srv 30000& [1] 619 $lf cli1* cli3* srv* srv2* 5.2.svr cli2* nohup.out srv1* srv3* [1] + Done(127) nohup >nohup.out srv 30000& 在上面执行nohup后 再执行lf 为什么会显示: [1] + Done(127) nohup >nohup.out srv 30000& 此句是什么意思?是不是srv进程退出来了?

by zouhu_cn - Shell - 2009-04-29 17:00:42 阅读(945) 回复(7)

这样执行命令时,关掉远程连接后,JBOOS就退出了,是什么原因? nohup /usr/local/jboss-4.0.5.GA/bin/run.sh >/dev/null &

by murenfeng - Shell - 2008-05-15 00:02:26 阅读(1178) 回复(2)

nohup ./commond 后可以在nohup.out里看到命令的执行过程。我不小心把nohup.out删除了。在不重启服务的情况下,如何重新生成nohup.out,或者看到命令的执行过程?

by baoyu05 - Shell - 2009-02-16 12:06:00 阅读(2044) 回复(6)

使用nohup让程序永远后台运行 Unix/Linux下一般比如想让某个程序在后台运行,很多都是使用 & 在程序结尾来让程序自动运行。比如我们要运行mysql在后台: /usr/local/mysql/bin/mysqld_safe --user=mysql & 但是加入我们很多程序并不象mysqld一样做成守护进程,可能我们的程序只是普通程序而已,一般这种程序使用 & 结尾,但是如果终端关闭,那么程序也会被关闭。但是为了能够后台运行,那么我们就可以使用nohup这个命令,比如我...

by skysong1982 - HP文档中心 - 2008-10-13 20:09:09 阅读(1825) 回复(0)