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
When I try to start Tightvnc with Xinetd, all I see in vncviewer is a grey screen with a black X.
When I start Tightvnc by typing vncserver in a terminal everything works fine.
Does anybody know why Tightvnc doesn't work with Xinetd in my configuration?
Thanks in advance for your help,
Sem
Ubuntu 11.10
Tightvnc 1.3.9
xstartup:
Code:
#!/bin/sh
unset
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
On a server with proftpd controlled by xinetd (plesk/centos FWIW), I want to make proftpd listen only on a specific ip address.
I've tried putting bind = 12.34.56.78 in /etc/xinetd.d/ftp_psa, and also putting DefaultAddress 12.34.56.78 in /etc/proftpd.conf, but it seems not to work.
After I restart xinetd, nmap shows that port 21 is still being listened on for my other public ip.
Can anyone tel
ut side of my control but I recently had issues trying to enable telnet on a server. Typically its pretty straightforward.
1. yum install telnet-server
2. chkconfig telnet on
3. chkconfig xinetd on
4. service xinetd start
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?
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]
HiI would like to use rsyncd to synchronize my laptop and desktop and vice-versa. Now I'm wondering what would be the best way to start rsyncd up.The simplest would be to start it by rsyncd.service on both machines.I read that it is possible to use xinetd to start it up on-demand.
I am trying to get a very simple tftp server working.