> I'm trying to install the rpm package of rhino to RedHat linux 7.3,
> when I install sysadm_base-tcpmux-1.3.7-1.i386.rpm with the following
> command:
> rpm -ivh sysadm_base-tcpmux-1.3.7-1.i386.rpm
>
> It came back with the following error:
> error: failed dependencies:
> /etc/inetd.conf is needed by sysadm_base-tcpmux-1.3.7-1
> and the install can not continue.
>
> I touch a empty /etc/inetd.conf, it's still not do with the same error.
> I copy /etc/xinetd.conf to /etc/inetd.conf, it cannot do too.
I think you can install sysadm_base-tcpmux --nodeps to get around the
dependency problem. Then, to get tcpmux to be started by xinetd,
add a "tcpmux" file to your xinetd config directory:
# default: on
# description: Additional services can be started through tcpmux. \
# (including sysadmd, which is used by the FailSafe GUI.) \
# The list of services which will be started by tcpmux are in \
# /etc/tcpmux.conf.
service tcpmux
{
socket_type = stream
wait = no
protocol = tcp
user = root
log_on_success += USERID
log_on_failure += USERID
server_args = /etc/tcpmux.conf
server = /usr/sbin/tcpmux
}
(Those paths may not be right.)
Then killall -USR1 xinetd (or -HUP if they changed that in the
version of xinetd which is in RedHat 7.3; I don't know).
--Rusty
--
Source code, list archive, and docs: http://oss.sgi.com/projects/rhino/
To unsubscribe: echo unsubscribe rhino | mail majordomo@xxxxxxxxxxx
|