problemas con openbsd-inetd

Forums: 

tengo el siguiente problema, realizo update e instalo openbsd-inetd, pero cuando termina la instalacion trata de encender el servicio y manda error, esto lo estoy haciendo en Debian en la version de Proxmox, como puedo solventar el problema, les dejo los print:

Stopping internet superserver: inetd.
Not starting internet superserver: no services enabled.

root@VM:~# /etc/init.d/openbsd-inetd restart
Restarting internet superserver: inetdNot starting internet superserver: no services enabled.

El error es clarísimo ...

Imagen de deathUser

El error es clarísimo ...

[quote=elnaq]Not starting internet superserver: no services enabled.[/quote]

Inetd es un super server, es decir, un servidor que habilita servidores, por ejemplo ftp, telnet, pop3, etc, antes era muy usado, pero seguramente no tienes configurado ningún servicio para que inetd lo levante y por eso el mensaje, no tiene sentido que inicie el servicio si no tiene nada que servir ;)

Para qué instalaste o para qué requieres INETD ...???

bye
;)

lo utilizo por que por medio

lo utilizo por que por medio de ese accedo a mis maquinas virtuales, lo raro es que tengo un servidor con proxmox y todo bien pero este ultimo que quieor levantar me manda ese error, eso si solo con las versiones 3.2 a las 3.4 lo manda con la version 2.3 y 3.0 no, en el archivo /etc/inetd.conf defino por que puerto me conectare y el id de la maquina virtual, o que otra herramienta puedo habilitar para que me funcione el tigervnc este es el que uso para conectarme a mas VM

hola Death, no obvie ningun

hola Death, no obvie ningun paso, cuadno le doy installar el paquete se ve que lo instala de forma correcta pero luego en el mismo proceso lo detiene y lo quiere levantar no puede, dejo las ultimas dos lineas que manda cuando le doy aptitude install openbsd-inetd.

Stopping internet superserver: inetd.
Not starting internet superserver: no services enabled.

luego quiero reiniciarlo y no anda
root@VM:~# /etc/init.d/openbsd-inetd restart
Restarting internet superserver: inetdNot starting internet superserver: no services enabled.

ahora bien si no obvie ningun paso y todo esta bien que otro punto se podria estar obviando?

El manual antes citado dice:

Imagen de deathUser

El manual antes citado dice:

[quote=http://c-nergy.be/blog/?p=2923]Configuring the openbsd-inetd daemon
At this stage, the service is not started because not configured yet. We will need to modify the inetd configuration file. For each virtual machine that you want to connect to using the external vnc viewer, you will need to add a entry in the /etc/inetd.conf file using the following structure

<%port> stream tcp nowait root /usr/sbin/qm qm vncproxy <%vmid%>

where <%port%> is the port number where the service will listen for incoming requests
where <%vmid%> is the id of the virtual machine you want to connect to
In my example, I will need to connect to the Virtual machine with ID 104 and I will assign the VNC port (where to listen to) to 59004. You can edit the file and add the following line at the bottom of the configuration file

59004 stream tcp nowait root /usr/sbin/qm qm vncproxy 104
Finally, you will need to restart the openbsd-inetd daemon to have the changes applied. You perform this action by issuing the following command

/etc/init.d/openbsd-inetd restart[/quote]

En esa parte es donde le dices que servicios va a "servir" el super server inetd, eso está configurado ...???

Son correctos los paths ...???

Como ya te dije, el error es que no están configurados servicios: "no services enabled"

Que versión tienes de proxmox y de debian ...???

bye
;)

hola Death, si defino el

hola Death, si defino el servicio acontinuacion los comandillos que tiro:
root@vm-sever# aptitude update
root@vm-sever# aptitude install openbsd-inetd

luego modificamos el archivo /etc/inetd.conf

al final agregamos las siguientes líneas

59004 stream tcp nowait root /usr/sbin/qm qm vncproxy 100

Guardamos y luego reiniciamos el servicio:

root@vm-sever# /etc/init.d/openbsd-inetd restart

la version de proxmox es la 3.4 (ultima version) y debian es la 7.8, gracias por tu apoyo