1

I am attempting to run the script Daemon.php from a unix prompt as a daemon using the code below as per the instructions given in this tutorial.

daemon Daemon.php --log=/var/log/Daemon.log

When I run this I get the output

daemon: command not found

Does know what might be going wrong?

Ben Pearce
  • 6,884
  • 18
  • 70
  • 127

1 Answers1

0

Try daemonize instead. If that also isn't found on your system, simply start Daemon.php in the background and see how far you get.

Armali
  • 18,255
  • 14
  • 57
  • 171