PDA

View Full Version : Multi server WebAdmin settings


Lloyd
19th October, 2002, 05:45 AM
Ok I finally got WebAdmin to work.. all this time it was my xinetd file. OK here is my question, I run 3 servers on my one install of UT2003. I run a BR, CTF, and Dm servers. I got the BR server to run Webadmin. But when I added the other redirects for xinetd for the other 2 servers only the one out of 3 server webadmins works(the first BR one) . I think that my xinetd file is what is causing the other 2 not to work. If I try the ports 22223 & 22224 I get the login screen but dead after that. Which is what the 22222 did before I redirected it. So Im taking it that my last two redirects are not working? Here is what I have:

service UTK3WebAdmin for BR 20000
{
disable = no
type = UNLISTED
socket_type = stream
protocol = tcp
wait = no
redirect = 127.0.0.1 22222
port = 20000
user = nobody
}
serice UTK3WebAdmin for CTF 30000
{
disable = no
type = UNLISTED
socket_type = stream
protocol = tcp
wait = no
redirect = 127.0.0.1 22223
port = 30000
user = nobody
}
service UTK3WebAdmin for CTF 40000
{
disable = no
type = UNLISTED
socket_type = stream
protocol = tcp
wait = no
redirect = 127.0.0.1 22224
port = 40000
user = nobody
}

can anybody tell me if this is ok? Or what I would need to change to get the other 2 to work?

Powerlord
19th October, 2002, 11:02 AM
Service names can't have spaces in them. In essence, you're telling xinetd that you want to start 3 of the same service, and it ignores the second and third ones.

Lloyd
24th October, 2002, 02:00 AM
Thans got everything running smooth now... All I need to a patch for the memmory leak and I should be all set....

Thanks again Powerlord to pointing out the problem.....