0

I have a file named /root/folder/myfile.php that will handle incoming packets from a specific port by a GPS device.

When I use [root@main ~] php /root/folder/myfile.php, everything works fine.

I need this file run every second to listen.

I researched for a while and figured out that using php cli is a solution, so I tried above command but as long as the shell is open (I'm using PUTTY), file is executing and when I close the shell, process will be killed.

How can I (where can I) add a command that will run this file every second, or may be in realtime?

I'm using linux centOS 6.5.

Thanks in advance

Trevor
  • 1,111
  • 2
  • 18
  • 30
vahed
  • 161
  • 1
  • 2
  • 12

2 Answers2

1
nohup php myscript.php &

the & puts your process in the background. The solution from Run php script as daemon process To kill it:
1) display all running proceses with: ps aux | less or top command
2) find pid(process id) and kill with: kill pid

Community
  • 1
  • 1
RomanPerekhrest
  • 88,541
  • 4
  • 65
  • 105
0

You would want to use the cron functionality of your server.

Similar to this maybe:

running a script from cron every second

Community
  • 1
  • 1
redreddington
  • 408
  • 2
  • 12