|
/
Zope
/
Apsis
/
Pound Mailing List
/
Archive
/
2006
/
2006-03
/
Error: Unknown Extra arugrment(stop...)
[
Pound doubt - backend is considered dead when? / ... ]
[
Error in my logs. I hope someone can help / ... ]
Error: Unknown Extra arugrment(stop...)
ruth.henderson(at)academy.com |
2006-03-08 21:03:38 |
[ SNIP ]
|
Running SLES9 kernel 2.6.5-7.252-bigsmp with Pound 1.9 and High
Availability. HA is also configured to start the virtual website
10.1.100.105, before pound starts. When the virtual site is started, I
can start pound, manually. As soon as I add the pound to the HA config, I
get the error Unknown Extra arugrment(start...) and pound does not start.
Below is my pound.cfg. Any suggestions?
ListenHTTP 10.1.100.105,80
# ListenHTTP 123.123.123.123,8080
LogLevel 4
# User www
# Group www
# RootJail /var/pound
UrlGroup ".*"
BackEnd xxx.xxxx.com,80,1
BackEnd xxx2.xxx.com,80,1
Session IP -1
EndGroup
|
|
|
|
|
Re: [Pound Mailing List] Error: Unknown Extra arugrment(stop...)
"T.Nagahama" <nag(at)ash.jp> |
2006-03-09 02:58:11 |
[ SNIP ]
|
Hello.
ruth.henderson(at)academy.com wrote:
> As soon as I add the pound to the HA config,
> I get the error Unknown Extra arugrment(start...)
> and pound does not start.
May be, It's conflict on TCP-80 port.
Please test below change.
from:
ListenHTTP 10.1.100.105,80
to:
ListenHTTP 10.1.100.105,8081
or, Please show us all of
"the error Unknown Extra arugrment(start...)".
|
|
|
Re: [Pound Mailing List] Error: Unknown Extra arugrment(stop...)
ruth.henderson(at)academy.com |
2006-03-09 21:07:26 |
[ SNIP ]
|
I tried port 8081 and got the same error. As you can see below there is
not much more to the error messages.
Mar 9 08:44:13 plspweb01 pound: starting...
Mar 9 08:44:13 plspweb01 pound: unknown extra arguments (status...)
Mar 9 08:44:13 plspweb01 pound: starting...
Mar 9 08:44:13 plspweb01 pound: unknown extra arguments (start...)
Mar 9 08:44:40 plspweb01 pound: starting...
Mar 9 08:44:40 plspweb01 pound: unknown extra arguments (stop...)
Mar 9 08:44:41 plspweb01 pound: starting...
Mar 9 08:44:41 plspweb01 pound: unknown extra arguments (stop...)
Mar 9 08:44:42 plspweb01 pound: starting...
"T.Nagahama" <nag(at)ash.jp>
03/08/2006 07:58 PM
Please respond to
pound(at)apsis.ch
To
pound(at)apsis.ch
cc
Subject
Re: [Pound Mailing List] Error: Unknown Extra arugrment(stop...)
Hello.
ruth.henderson(at)academy.com wrote:
> As soon as I add the pound to the HA config,
> I get the error Unknown Extra arugrment(start...)
> and pound does not start.
May be, It's conflict on TCP-80 port.
Please test below change.
from:
ListenHTTP 10.1.100.105,80
to:
ListenHTTP 10.1.100.105,8081
or, Please show us all of
"the error Unknown Extra arugrment(start...)".
--
To unsubscribe send an email with subject 'unsubscribe' to pound(at)apsis.ch.
Please contact roseg(at)apsis.ch for questions.
http://www.apsis.ch/pound/pound_list/archive/2006/2006-03/1141848218000/1141869491000
|
|
|
|
|
Re: [Pound Mailing List] Error: Unknown Extra arugrment(stop...)
"T.Nagahama" <nag(at)ash.jp> |
2006-03-10 01:14:36 |
[ SNIP ]
|
ruth.henderson(at)academy.com wrote:
> I tried port 8081 and got the same error. As you can see below there is
> not much more to the error messages.
>
> Mar 9 08:44:13 plspweb01 pound: starting...
> Mar 9 08:44:13 plspweb01 pound: unknown extra arguments (status...)
> Mar 9 08:44:13 plspweb01 pound: starting...
> Mar 9 08:44:13 plspweb01 pound: unknown extra arguments (start...)
> Mar 9 08:44:40 plspweb01 pound: starting...
> Mar 9 08:44:40 plspweb01 pound: unknown extra arguments (stop...)
> Mar 9 08:44:41 plspweb01 pound: starting...
> Mar 9 08:44:41 plspweb01 pound: unknown extra arguments (stop...)
> Mar 9 08:44:42 plspweb01 pound: starting...
Oh!, I see.
SYSTEM execute pound with SysV-like parameter.
You can take 2 way either.
a. pound start in rc.local.
b. You write start-stop-script, and SYSTEM execute this script.
as this (see scripts in /etc/init.d/ or /etc/rc.d/init.d/),
#!/bin/sh --
case $1 in
start )
# start pound command.
;;
stop )
# stop pound command.
;;
status )
# ???
;;
esac
|
|
|
|