daemon

daemon

am 07.10.2010 07:21:47 von Tommy Pham

Hi,

Does anyone have a script running as daemon on Linux/Unix (variants) as part
of your PHP application? If so, what are you using to schedule the script
to run? cron?

Thanks,
Tommy


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: daemon

am 07.10.2010 07:46:23 von Nathan Nobbe

--0016363b9f960268090492006a8d
Content-Type: text/plain; charset=UTF-8

On Wed, Oct 6, 2010 at 11:21 PM, Tommy Pham wrote:

> Hi,
>
> Does anyone have a script running as daemon on Linux/Unix (variants) as
> part
> of your PHP application? If so, what are you using to schedule the script
> to run? cron?
>

cron is one way to do it for scripts you schedule. for real daemon
processes though ive recently deployed a php script on gentoo by leveraging
the init scripts. essentially my program runs a while(true) and uses
pcntl_fork() to create worker children. the parent process listens for
signals which are sent by an init script. theres also a really nice
start-stop-daemon function in the init script library which backgrounds the
process for me and creates a pid lockfile. really slick.

now i have an interface to my script like

/etc/init.d/php-service start

etc. plus it ties right into the runlevel scripts, i just run

rc-update add php-service default

and the script will start when the box hits runlevel 3!

-nathan

--0016363b9f960268090492006a8d--

Re: daemon

am 07.10.2010 09:34:10 von Per Jessen

Tommy Pham wrote:

> Hi,
>=20
> Does anyone have a script running as daemon on Linux/Unix (variants)
> as part of your PHP application? =20

Yeah, several.=20

> If so, what are you using to schedule the script to run? cron?

sysVinit and startproc



--=20
Per Jessen, Zürich (12.1°C)


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: daemon

am 07.10.2010 10:07:51 von Colin Guthrie

'Twas brillig, and Nathan Nobbe at 07/10/10 06:46 did gyre and gimble:
> On Wed, Oct 6, 2010 at 11:21 PM, Tommy Pham wrote:
>
>> Hi,
>>
>> Does anyone have a script running as daemon on Linux/Unix (variants) as
>> part
>> of your PHP application? If so, what are you using to schedule the script
>> to run? cron?
>>
>
> cron is one way to do it for scripts you schedule. for real daemon
> processes though ive recently deployed a php script on gentoo by leveraging
> the init scripts. essentially my program runs a while(true) and uses
> pcntl_fork() to create worker children. the parent process listens for
> signals which are sent by an init script. theres also a really nice
> start-stop-daemon function in the init script library which backgrounds the
> process for me and creates a pid lockfile. really slick.
>
> now i have an interface to my script like
>
> /etc/init.d/php-service start
>
> etc. plus it ties right into the runlevel scripts, i just run
>
> rc-update add php-service default
>
> and the script will start when the box hits runlevel 3!

Yeah that's what I do too. Of course systemd will change everything
"initscript" related, but I don't expect it to hit production servers
for a while.

Col

--

Colin Guthrie
gmane(at)colin.guthr.ie
http://colin.guthr.ie/

Day Job:
Tribalogic Limited [http://www.tribalogic.net/]
Open Source:
Mageia Contributor [http://www.mageia.org/]
PulseAudio Hacker [http://www.pulseaudio.org/]
Trac Hacker [http://trac.edgewall.org/]


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: Re: daemon

am 07.10.2010 11:39:28 von Per Jessen

Colin Guthrie wrote:

> Yeah that's what I do too. Of course systemd will change everything
> "initscript" related, but I don't expect it to hit production servers=

> for a while.

Could easily be years - the init-sequence is only interesting at
boot-time, and server runs for years (wel, mine certainly do).


/Per

--=20
Per Jessen, Zürich (12.9°C)


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php