I installed proftpd under xinetd and it appears to be working...I figured it would make sense to launch deluge-web under xinetd since i don't really use it much.
Code:
/etc/xinetd.d$ cat deluge-web
service deluge-web
{
flags = REUSE
socket_type = stream
protocol = tcp
wait = no
user = deluge
server = /usr/bin/deluge-web
instances = 20
port = 8112
}
I have the file path right:
Code:
/e
First, look in your /etc/xinetd.d/ directory and see if there’s a file named psa_ftp in there.
I have talk installed:
yum install talk talk-server
And I have /etc/xinetd.d/talk set to disabled
and /etc/xinetd.d/ntalk set to enabled
I also have opened port 518/udp on server and laptop
and enabled xinetd.service
sudo systemctl enable xinetd.service
sudo systemctl start xinetd.service
sudo systemctl status xinetd.service says that it is running.
AFAIK, the configuration is identical on lap
I have installed tftp-server and xinetd on my CentOS 5 server. /etc/xinetd.d/tftp has disable=no and the xinetd service is up and running. I believe I should now be able to telnet to port 69 to tes... [by philled]
Hello ppl,
I'm facing an unusual problem and I have no clue to what is the reason for the problem. I will be very happy if anyone can give me a possible reason
I'm trying to make an application run using xinetd. I have written the following configuration file in a file named 'keskya'(keskya is the name of the application)
Can I use all inetd settings with xinetd? I know inetd is not secure, so I wanted to switch my plans to xinetd.
I was planning on using inetd like this: inetd -C 12 -s 1. The flags correspond to max-connections-per-ip-per-minute and max-child-per-ip.
If I use xinetd, would I be able to continue using those two settings?
Hey there
I'm trying to let xinetd start a vnc server.
I have no problem starting it up trough chkconfig, but when i try to use xinetd i get a black screen and no window to fill im my pass. what step i'm i missing ?
Some help would be welcome
I am working with rsh.
When I run rsh localhost ulimit -n , it shows 1024.
But that should be 12000.
Because ulimit -n gives 12000.
But when I run service xinetd restart , it gives the hard limit of file descriptor.
i.e, 12000.
Why all these weird things happens.
Ubuntu 12.04.1 LTS
I see openbsd-inetd is installed by default but there are quite a few mentions of xinetd in Ask Ubuntu.
I have a custom service to install. inetd would provide all the features I need.
Should I be using inetd or xinetd to be most compatible with future updates?