ALT Linux Sisyphus discussions
 help / color / mirror / Atom feed
* [sisyphus] Демонизирование процесса
@ 2005-12-20  9:31 Maxim Bodyansky
  2005-12-20  9:45 ` Dmitry Lebkov
  0 siblings, 1 reply; 5+ messages in thread
From: Maxim Bodyansky @ 2005-12-20  9:31 UTC (permalink / raw)
  To: Sisyphus

День добрый.

Как можно превратить в демона процесс который сам превращаться не умеет?
Исходники недоступны, а запускать сие чудо надо из init.d.

PS: программа называется utm5_rfw -- файрвольный рулевой биллинга UTM5

-- 
WBR,
Maxim Bodyansky


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [sisyphus] Демонизирование процесса
  2005-12-20  9:31 [sisyphus] Демонизирование процесса Maxim Bodyansky
@ 2005-12-20  9:45 ` Dmitry Lebkov
  2005-12-20 10:13   ` Maxim Bodyansky
  2005-12-20 10:26   ` Andrei Bulava
  0 siblings, 2 replies; 5+ messages in thread
From: Dmitry Lebkov @ 2005-12-20  9:45 UTC (permalink / raw)
  To: ALT Linux Sisyphus discussion list

Maxim Bodyansky wrote:
> День добрый.
> 
> Как можно превратить в демона процесс который сам превращаться не умеет?
> Исходники недоступны, а запускать сие чудо надо из init.d.

1) взять /etc/rc.d/init.d/template и подрихтовать под свои нужды;
2) добавить к списку параметров start_daemon параметр --make-pidfile.
3) проверить работоспособность ;)

-- 
WBR, Dmitry Lebkov


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [sisyphus] Демонизирование процесса
  2005-12-20  9:45 ` Dmitry Lebkov
@ 2005-12-20 10:13   ` Maxim Bodyansky
  2005-12-20 10:26   ` Andrei Bulava
  1 sibling, 0 replies; 5+ messages in thread
From: Maxim Bodyansky @ 2005-12-20 10:13 UTC (permalink / raw)
  To: ALT Linux Sisyphus discussion list

On Втр, Дек 20, 2005 at 07:45:07 +1000 Dmitry Lebkov wrote:
> Maxim Bodyansky wrote:
> >День добрый.
> >
> >Как можно превратить в демона процесс который сам превращаться не умеет?
> >Исходники недоступны, а запускать сие чудо надо из init.d.
> 
> 1) взять /etc/rc.d/init.d/template и подрихтовать под свои нужды;
> 2) добавить к списку параметров start_daemon параметр --make-pidfile.
> 3) проверить работоспособность ;)

Спасибо большое! :)

-- 
WBR,
Maxim Bodyansky


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [sisyphus] Демонизирование процесса
  2005-12-20  9:45 ` Dmitry Lebkov
  2005-12-20 10:13   ` Maxim Bodyansky
@ 2005-12-20 10:26   ` Andrei Bulava
  2005-12-20 10:35     ` Maxim Bodyansky
  1 sibling, 1 reply; 5+ messages in thread
From: Andrei Bulava @ 2005-12-20 10:26 UTC (permalink / raw)
  To: ALT Linux Sisyphus discussion list

Dmitry Lebkov wrote:
> Maxim Bodyansky wrote:
> 
>> День добрый.
>>
>> Как можно превратить в демона процесс который сам превращаться не умеет?
>> Исходники недоступны, а запускать сие чудо надо из init.d.

<jt>Вы реально хотите доверить управление файрволом закрытому ПО?
Помните: каждый ССЗБ.</jt>

> 1) взять /etc/rc.d/init.d/template и подрихтовать под свои нужды;
> 2) добавить к списку параметров start_daemon параметр --make-pidfile.
> 3) проверить работоспособность ;)

E.g., компоненты Jabberd2 запускаются из init.d через использование
конструкции вида

PIDFILE=/var/run/jabberd2/router.pid
LOCKFILE=/var/lock/subsys/jabberd-router
DAEMON="runbg /usr/libexec/jabberd2/router"

start_daemon --pidfile "$PIDFILE" --name router --lockfile "$LOCKFILE"
--user jabberd2  -- $DAEMON "$OPTIONS"

-- 
// AB1002-UANIC



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [sisyphus] Демонизирование процесса
  2005-12-20 10:26   ` Andrei Bulava
@ 2005-12-20 10:35     ` Maxim Bodyansky
  0 siblings, 0 replies; 5+ messages in thread
From: Maxim Bodyansky @ 2005-12-20 10:35 UTC (permalink / raw)
  To: ALT Linux Sisyphus discussion list

On Втр, Дек 20, 2005 at 12:26:02 +0200 Andrei Bulava wrote:
> Dmitry Lebkov wrote:

<skip />

> <jt>Вы реально хотите доверить управление файрволом закрытому ПО?
> Помните: каждый ССЗБ.</jt>

Ага, хочу.

> > 1) взять /etc/rc.d/init.d/template и подрихтовать под свои нужды;
> > 2) добавить к списку параметров start_daemon параметр --make-pidfile.
> > 3) проверить работоспособность ;)
> 
> E.g., компоненты Jabberd2 запускаются из init.d через использование
> конструкции вида
> 
> PIDFILE=/var/run/jabberd2/router.pid
> LOCKFILE=/var/lock/subsys/jabberd-router
> DAEMON="runbg /usr/libexec/jabberd2/router"
> 
> start_daemon --pidfile "$PIDFILE" --name router --lockfile "$LOCKFILE"
> --user jabberd2  -- $DAEMON "$OPTIONS"

помогла такая конструкция:
 start_daemon --pidfile "$PIDFILE" --make-pidfile --lockfile "$LOCKFILE" \
              -- utm5_rfw -c /etc/utm5_rfw.cfg

Ключ --user пока цепляться упорно не хочет.

-- 
WBR,
Maxim Bodyansky


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2005-12-20 10:35 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-12-20  9:31 [sisyphus] Демонизирование процесса Maxim Bodyansky
2005-12-20  9:45 ` Dmitry Lebkov
2005-12-20 10:13   ` Maxim Bodyansky
2005-12-20 10:26   ` Andrei Bulava
2005-12-20 10:35     ` Maxim Bodyansky

ALT Linux Sisyphus discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/sisyphus/0 sisyphus/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 sisyphus sisyphus/ http://lore.altlinux.org/sisyphus \
		sisyphus@altlinux.ru sisyphus@altlinux.org sisyphus@lists.altlinux.org sisyphus@lists.altlinux.ru sisyphus@lists.altlinux.com sisyphus@linuxteam.iplabs.ru sisyphus@list.linux-os.ru
	public-inbox-index sisyphus

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.sisyphus


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git