General :: Xinetd And Trying To Get R-1 To Work ?

Jul 8, 2009

I am really not very experienced with linux and have only just started working off the command line in windows as well.

I know the basics but I am trying to install R-1 and I was having a lot of difficulties and figured out that it was that xinetd was not running.

So I tried to run it service xinetd start and it said unecognized service so then I installed xinetd and there was already a xinetd.d directory with all of the processes i needed with the .conf file but so when i run xinetd -d

Code:

My xinetd.conf file looks like this:

Code:

# All service files are stored in the /etc/xinetd.d directory
#
includedir /etc/xinetd.d
# End /etc/xinetd
EOF

This is what one of the files in xinetd.d looks like

Code:

I need to get xinetd running so that i can finish installing R-1.

View 6 Replies


ADVERTISEMENT

General :: Using Xinetd - No Responses Or Messages At All - Doesn't Work

Sep 30, 2010

I'm going through strange symptom with my linux.

When I type

Code: service xinetd [start|restart|stop]

There is no responses or messages at all. Even when I tried some meaningless argument, such as

Code:service xinetd sdfsdfsdg , it just doesn't work.

I checked that xinetd is installed by using the command

Code: rpm -qv xinetd

Also I do not see the error message "Unrecognized service" when I type the commands.

Here's what I see when I type the command.

Code:

View 1 Replies View Related

General :: To Xinetd Or Not To Xinetd ?

Jul 21, 2009

I've been reading the RUTE Linux book and they recommend the use of xinetd to run services. However, this book is already a bit outdated, and I was wondering whether this still applies to today's circumstances?

View 4 Replies View Related

Fedora Servers :: Sshd Within Xinetd Doesn't Work

Aug 21, 2010

I recently installed Fedora 13 on VMware 7 environment without X window. sshd did work fine, but when I tried to put it into xinetd, it doesn't work any more. Here is what I have done so far :

I stopped sshd. #service sshd stop

and I configured xinetd.conf like below.

Quote:

#
# This is the master xinetd configuration file. Settings in the
# default section will be inherited by all service configurations
# unless explicitly overridden in the service configuration. See
# xinetd.conf in the man pages for a more detailed explanation of
# these attributes.

[Code]....

I don't know what I did wrong with them. I configured xinetd.conf, and I made service configuration file 'ssh' in /etc/xinetd.d, and I restarted xinetd.

What am I supposed to do to make a life on my sshd within xinetd ?

View 1 Replies View Related

Networking :: Modify Ftpd Source Code To Work With Xinetd?

Sep 23, 2010

I read that xinetd listens on the service port and passes incoming traffic to the service (ftpd) via stdin. However, the ftpd source code reads its input from a socket not from stdin.

Am I to conclude that in order to be managed by xinetd, the source code for ftpd (or telnetd etc..) must be modified or recompiled to take its input from stdin??

View 1 Replies View Related

Server :: /etc/xinetd.conf Vs /etc/xinetd.d

Apr 24, 2009

I installed Subversion and xinetd and added Subversion as a service to xinetd.conf as instructed at http://www.codeandcoffee.com/2007/06...rver-on-linux/

I restarted the xinetd service using /sbin/service. however, Subversion does not end up being listed in /etc/xinetd.d nor does it seem to be running and occupying the port altogether.

View 2 Replies View Related

General :: Ssh Not Working Under Xinetd?

Apr 15, 2011

I'm trying to restrict ssh connection using xinetd , so my xinetd configuration files are :
/etc/xinetd.conf

Code:
defaults
{

[code]...

View 3 Replies View Related

General :: Remove Xinetd.conf ?

Dec 18, 2010

I have simpe question about xinetd what happen to my system if i remove xinetd.conf what can i do to dont allow anyone delete xinetd.conf.

View 2 Replies View Related

General :: Xinetd - Unrecognized Service

May 21, 2010

I've already installed centos 5.5 and checked the xinetd services using the command : service xinetd status and the reply is xinetd: unrecognized service.

View 3 Replies View Related

General :: Use YUM To Install E.g. Xinetd On A RHEL 4?

Jun 1, 2011

i got another question, can i use YUM to install e.g. xinetd on a RHEL 4? or does RHEL4 have another command like YUM?

Code:
$ yum install xinetd
-bash: yum: command not found

View 2 Replies View Related

General :: Is There A Xinetd.conf Alternative For Ubuntu

Feb 10, 2010

I want to look into disabling things like chargen, chargen-udp, daytime, daytime-udp, echo etc...I have found a manual at:which points me towards the xinetd.conf file. I cant seem to find it, im using ubuntu 8.10 LTS. Should I be looking else where?

View 2 Replies View Related

General :: Xinetd Keeps Process Open When Client Disconnects?

Sep 17, 2010

I've asked this question more or less before on stackoverflow and believed it to be solved (hence accepted the answer) but it turns out it wasnt solved.In simple terms, I've written a python script which just outputs text constantly to stdout, thats all it does 24/7. I've linked it to this xinetd file

service myservice
{
instances = 1

[code].....

View 2 Replies View Related

General :: Xinetd Server Configuration - Infinite Loop?

Apr 14, 2011

I have a java server console program that I have configured xinetd to start when connection comes in on a given port and then the program runs in an infinite loop receiving inputstream from telephone exchanges. The thing is, when a new chunk of stream comes from the exchange xinetd forks a new process each time. I tried setting the wait parameter to yes and restarted the deamon, but no success. How can I stop this behavior and have the deamon just direct the stream to the process already running? Am I missing something in my config or is it just incorrect?

My config is as follow:
defaults
{
instances = 60
log_type = SYSLOG authpriv
log_on_success = HOST PID
log_on_failure = HOST
cps = 50 10
}
includedir /etc/xinetd.d

And then my actual config,
service aos_larmar
{
socket_type = stream
protocol = tcp
user = root
type = UNLISTED
wait = yes
instances = 256
server = /home/gunnl/java/start.sh
port = 5204
disable = no
}

My server OS is, Red Hat Enterprise Linux ES release 4 (Nahant Update 7)

View 1 Replies View Related

General :: RHEL5: Includedir Option In /etc/xinetd.conf Does Not Take Effect?

Mar 1, 2010

When I was configure xinetd service I tried to modify the includedir option in /etc/xinetd.conf to another directory. For example:

defaults
{
}

[code]....

View 2 Replies View Related

General :: How Can Vsftpd Services & Xinetd.d Services Can Be Differentiated

Sep 13, 2010

How can Vsftpd services & Xinetd.d services can be differentiated?

View 5 Replies View Related

Server :: Run /usr/bin/foo Through Xinetd ?

Apr 28, 2009

If i run /usr/bin/foo through xinetd and have /etc/xinetd.d/foo conf file something like:

1 service foo
2 {
3 port = 3691
4 socket_type = stream
5 protocol = tcp
6 wait = no
7 user = www-data
8 server = /usr/bin/foo
9 server_args = -x
10 }

Is /usr/bin/foo supposed to be listed in the list of all processes on that machine (ps aux)? i added the conf file, bouced xinetd daemon via /sbin/service, yet foo does not seem to be running. the xinetd doc online seems pretty incomplete.

View 10 Replies View Related

Programming :: Pixelserv With Xinetd ?

Oct 22, 2009

http://www.pastebin.org/47041. pixelserv is a http-daemon which returns a pixel for every http-request. It was originally written in perl [url], but this is a tad too heavy for a small linux device like a DD-WRT router [url].

I was able to compile it and it runs fine standalone, but I want to run it under xinetd using this configuration-file.

Code:

When I do a "wget [url]" from the console of that router it will fail with this in /var/log/messages

Code:

It seems it's incompatible with xinetd, but I lack the knowledge and experience to modify this. A whole community will be grateful if someone is able to make this runable under xinetd.

View 14 Replies View Related

Networking :: Trying To Launch A C-server Using Xinetd

Jun 26, 2011

I have a small stats program that I am using to get some sys stats. I am trying to launch this program on a particular port, using the xinetd system deamon. Here is what I am doing ...

[Code]///

View 1 Replies View Related

Ubuntu :: Configure Xinetd For Logging ?

Jan 6, 2011

How to configure xinetd for logging , so that it can log all incoming connections by IP address , TCP port and name of service ?

View 1 Replies View Related

Fedora Security :: Xinetd And Bash Scripts - No Need For SSL

Jul 14, 2009

I've recently setup a simple service application using xinetd, which runs a bash script to allow users to check for specific events into a log file. The contents of this logfile is not sensitive, so no need for SSL or password protection. Though, my concern about it is the possibility of a malicious request to cause execution of arbitrary code. I've seen similar bash issues discussed briefly a couple times, but never actually seen any solid point of how much of this is a fact, or myth. I've tested some obvious things, like sending tricky characters into the request, but so far it looks ok. So my question here is, considering the following code below, would be possible for an attacker to exploit it? How safe it is to have this sort of application running as a service?

# /etc/xinetd.conf
Code:
service logfile-search {
server= /home/guest/logfile-search.bash
socket_type= stream
wait= no
instances= 5
per_source= 1
user= guest
nice= 15
log_type= FILE /home/guest/logfile-search.bash.access.log
log_on_success= HOST DURATION EXIT
log_on_failure= HOST
}
# /etc/services

Code:
logfile-search30000/tcp
# /home/guest/logfile-search.bash

Code:
#!/bin/bash
trap "" 2 3 24
echo -n "Enter search string: " ; read -t 120
if [ "$REPLY" ]; then
echo "`date` - $REMOTE_HOST - $REPLY" >>/home/guest/logfile-search.bash.search.log
grep -i "$REPLY" /home/guest/logfile.txt
fi
exit

View 2 Replies View Related

Fedora Networking :: Cant Find Services Xinetd & Others?

Aug 15, 2009

i am working with fedora 9 i need to turn on services such as telnet,ftp,dns,nfs,dhcp etc. but the problem is i dont even find xinetd based service when i am giving this command

Code:
#chkconfig --list|more
nd some command is not working for me as well like

[code]....

View 8 Replies View Related

Fedora :: Getting To Know /etc/initd.conf, /etc/init.d, Xinetd?

Aug 3, 2011

I would like some quick pointers to understanding service-daemon controlling and etc/initd.conf or /etc/xinetd.conf, if you prefer. read, a while back, I should be using...

[bash]# service "srv-dmon" start/stop/status/restart/reload/etc
and to stop using...
[bash]# /etc/init.d/"srv-dmon" start/stop/status/restart/panic/save/etc

[code]....

View 2 Replies View Related

Ubuntu Servers :: Use Xinetd To Start Svnserve?

Jan 30, 2011

I am trying to run svnserve on startup on an Ubuntu Server 10.04 machine using xinetd

My repositories are at /home/svn, so the directory should be the same as in the example. Following the example, the owner should be www-data, I assume. (Is that right?) I've also tried the admin user account as as the svnowner (the one used to set the svnserver up).

I've never done any shell scripting, so I tried xinetd instead of using the startup script. But if I don't get any feedback for using xinetd that will be my next course of option.

For reference, the link above suggests adding

Code:
svn stream tcp nowait svnowner /usr/bin/svnserve svnserve -i -r /home/svn

to the /etc/inetd.conf file, replacing svnowner and /home/svn to the appropriate values (although I'm not 100% sure what those should be). I assume since I did a chown on the repo to www-data that www-data is the owner I need to put in that line, but it doesn't work.

It's just annoying to have to ssh in and type

Code:
svnserve -d --foreground -r /home/svn

every time I reboot.

View 4 Replies View Related

Red Hat / Fedora :: Installing Cvs - Xinetd - Command Not Found

Mar 12, 2010

I am new to Linux i am installing cvs in it.

I am facing the below problem:sudo /etc/init.d/xinetd reload sudo: /etc/init.d/xinetd: command not found. /etc/init.d/xinetd restart /etc/init.d/xinetd stop.

View 5 Replies View Related

Red Hat / Fedora :: Configure SNMP Server Using XINETD?

Jan 26, 2011

I am trying to configure SNMP server using xinetd on red hat. I am using non-standard port for it. My connection to server fails. I see the following log messages in /var/log:

Jan 26 17:23:31 [userid] xinetd[15023]: START: my-snmp pid=15047 from=192.128.11.21
Jan 26 17:23:31 [userid] xinetd[15023]: EXIT: my-snmp status=1 pid=15047 duration=0(sec)
Jan 26 17:23:32 [userid] xinetd[15023]: START: my-snmp pid=15050 from=192.128.11.21
Jan 26 17:23:32 [userid] xinetd[15023]: EXIT: my-snmp status=1 pid=15050 duration=0(sec)

can anybody help to point out what is wrong in my config?

[Code]...

View 1 Replies View Related

Server :: VNC Over Xinetd Doesn't Starts Vncserver

Nov 26, 2010

in Debian Lenny, using TightVNC 1.3.9 I can setup a VNC server manually by using

Code:
vncserver -query localhost -once -geometry 1024x768 -depth 16 :1

But then, as I have read is a better option, I use xinetd with the following configuration:

Code:
service vnc-1024x768x16
{
protocol = tcp
socket_type = stream
wait = no

[Code].....

In fact, I was considering that the problem was with xinetd, but I have other services setted up with it (telnet & ftp for example) and I can use them correctly.

So now I'm lost with this, what else am I not considering with VNC service through xinetd? Where can I find logs or useful information to get a clue about this problems?

View 11 Replies View Related

CentOS 5 Server :: No Xinetd Installed By Default?

Jul 18, 2009

yesterday I installed my first CentOS system. Before I was always using Debian for my servers. When I configured my vsftpd I was just wondering how to setup xinetd or inetd for listening on ports and starting vsftpd. I found /etc/xinetd.d. But there is no xinetd installed by default. Why? Shall I start all my services in standalone mode? What is the concept of CentOS in this issue?

View 5 Replies View Related

CentOS 5 :: Cannot Find Xinetd.conf In CentOS5.4?

Nov 18, 2009

I can not find xinetd.conf on my server (CentOS 5.4 operation system).

View 2 Replies View Related

CentOS 5 :: NRPE And Xinetd Running Every Minte

Jun 10, 2011

I have nagios/nrpe installed on a client and for some reason, the xinetd service is running/checking every minute. The log is just getting larger by the minute with the start and exit of xinetd.

View 19 Replies View Related

Fedora :: Beesu Nautilus Window Never Opens (VNC Via Xinetd)

Feb 23, 2011

I have setup a vnc server using the "every imagineable server" thread which setups up VPN using xinetd. I have also installed Beesu and its associated scripts so I can easily open root privileged nautilus windows.

beesu works a treat on the actual display. However whilst vnc'd into the box I get prompted for my root password (which it accepts) but a nautilus window never opens. No errors, it just doesn't open.

View 6 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved