Nohup/root/start.sh &
Prompt after carriage return in shell:
[~]$ appending output to Nohup.out
The standard output of the original program is automatically redirected to the Nohup.out file in the current directory, which plays the role of log.
After you disconnect the SSH connection, the program runs unaffected. has been verified
Use jobs to view tasks.
The following transfers are from: http://www.cnblogs.com/allenblogs/archive/2011/05/19/2051136.html
1.nohup
Purpose: To run the command without hanging off.
Syntax: Nohup Command [Arg ...] [&]
The output is appended to the Nohup.out file in the current directory, regardless of whether the output of the Nohup command is redirected to the terminal.
If the nohup.out file for the current directory is not writable, the output is redirected to the $HOME/nohup.out file.
If no file can be created or opened for appending, then the command specified by the commands parameter is not callable.
Exit Status: This command returns the following exit values: 126 You can find but cannot invoke the command specified by the command parameter. The 127 nohup command has an error or cannot find the command specified by the commands parameter. Otherwise, the exit status of the Nohup command is the command parameter that specifies the exit state of the commands.
2.&
Purpose: Run in the background
Generally two one
Nohup Command &
eg
Nohup/usr/local/node/bin/node/www/im/chat.js >>/usr/local/node/output. Log 2>&1 &
Process number 7585
To view a running background process
(1) jobs-l
The jobs command only looks at the current terminal in effect, after shutting down the terminal, in another terminal jobs can not see the background running program, the use of PS (Process view command)
(2) Ps-ef
Ps-aux|grep Chat.js
A: Show All Programs u: Display x in user-oriented format : Show All Programs, do not differentiate by terminal
Note:
With Ps-def | The grep lookup process is convenient, and the last line will always grep itself
The grep command can be ruled out with the GREP-V parameter
Ps-aux|grep chat.js| Grep-v grep
Then use awk to extract the process ID
Ps-aux|grep chat.js| Grep-v grep | awk ' {print $} '
3. If a process does not come up, a port may be occupied
To view a process that uses a port
lsof-i:8090
Netstat-ap|grep 8090
After viewing the process ID, use the netstat command to view the ports it occupies
Netstat-nap|grep 7779
Kill the city with kill and start again.
4. Terminate the process running in the background
Kill-9 Process Number
Linux background Execution nohup command, terminal disconnect no effect