The concept, In LINUX there is a shell script which is used to run the process in background. You can put a task (such as command or script) in a background by appending a & at the end of the command line. The & operator puts command in the background and free up your terminal. The command which runs in background is called a job. You can type other command while background command is running.
Syntax : {command} &
Example: ls -l & exec php index.php > /dev/null 2>&1 & echo $!
How to check the background process in Linux?
ps -l (list all process)
ps -ef (all full details of process)
What is the command to execute a php script in background?
Syntax: nohup exec arg1 arg2 > /dev/null &
Example: nohup exec php process.php hello world > /dev/null &
What is nohup?
Most of the time you log-in into remote server via ssh. If you start a shell script or command and you exit (abort remote connection), the process / command will get killed. Sometime job or command takes a long time. If you are not sure when the job will finish, then it is better to leave job running in background. But, if you log out of the system, the job will be stopped and terminated by your shell.What do you do to keep job running in the background when process gets SIGHUP?
The answer is simple, use nohup command line-utility which allows to run command/process or shell script that can continue running in the background after you log out from a shell:
nohup command syntax: nohup command-name &
What is exec?
This command is used to execute a process in Linux. It can process one or more process at a time.How to use this PHP library on your code?
Step 1: create two file name index.php and process.phpstep 2: include the PHPBackgroundProcesser.php file in the index.php
step 3: create a instance of the class BackgroundProcess
We can use this:
Type 1:
1
| $proc = new BackgroundProcess( 'exec php <BASE_PATH>/process.php hello world' ); |
1
2
3
| $proc = new BackgroundProcess(); $proc ->setCmd( 'exec php <BASE_PATH>/process.php hello world' ); $proc ->start(); |
1
2
| $proc = new BackgroundProcess(); $proc ->setCmd( 'exec php <BASE_PATH>/process.php hello world' )->start(); |
1
| $process = new BackgroundProcess( "curl -s -o <Base Path>/log/log_storewav.log <PHP URL to execute> -d param_key=<Param_value>" ); |
How to get all process which is running?
1
2
| $proc = new BackgroundProcess(); print_r( $proc ->showAllPocess()); |
How to kill a process ?
1
2
| $proc = new BackgroundProcess(); $proc ->setProcessId(101)->stop(); //set the process id. |
Example for How to Pass Json Data :-
$json_data = '{"device_token":"'.$device_token.'","message":"'.$message.'","status":"0","badge_count":"'.$userdata[0]->badge_count.'","shipment_id":"'.$shipment_id.'","shipment_create_fcm_ios":"ok","ctype":1}';
$process=new BackgroundProcess('curl http://shiptm.com/ws/background_controller/curl_request.php?data="'.urlencode($json_data).'"');
print_r($process->showAllPocess());
Github
No comments :
Post a Comment
Note: only a member of this blog may post a comment.