每当我认为我对Linux感到舒服时,我就会被一个暴露我缺乏经验的简单问题所困扰:如何启动daytime服务?我的尝试如下:
>sudo systemctl start daytime
Failed to issue method call: Unit daytime.service failed to load: No such file or directory.
>which daytime
/usr/bin/which: no daytime in (/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/s
我正试图为我的团队建立一个git公共存储库。
我已经在linux上安装了Git (RedHat 5.6)。
作为第一步,我试图通过设置Git来运行xinetd来配置git以使用git协议。
以下是/etc/xinetd.d/git-守护进程的内容:
# default: off
# description: The git server offers access to git repositories
service git
{
disable = no
type = UNLISTED
port =
我正在尝试通过安装代理来开始将我们的Linux服务器添加到我们的Check_MK监控中。我已经从我的Check_MK服务器上安装了Xinetd和Check_MK_Agent RPM。但是,Check_MK代理似乎没有运行。
当我执行"status xinetd.service“时,我会看到一些错误,我觉得这些错误说明它没有启动
xinetd[1533]: bind failed (Address already in use (errno = 98)). service = check_mk
xinetd[1533]: Service check_mk failed t
我正在做一项关于Telnet通信的研究,我需要测试它的通信,尽管它并不安全。
我的EC2上有一台Ubuntu机器18.04 (我为AWS中的每个人打开了入站端口23 )。
我检查了Telnet的状态,没有找到:
root@ip:~# service telnet status
Unit telnet.service could not be found.
我尝试用以下命令安装它
apt update
apt --fix-broken install
apt-get install xinetd telnetd
之后,我用找到的信息创建了/etc/xinetd.d/telnet文件这里
在我的环境中,我有一个运行CentOS 5的linux服务器,我在这个服务器上设置了一个telnet服务,以便通过telnet进行连接。然而,过了一段时间后,我尝试连接并得到了这个错误:This session is no longer connected。
一旦我重新启动xinetd服务,这条消息就会消失,并且我能够再次使用telnet。对于如何调试这个问题,或者我可以签出哪些日志来查看可能导致此错误的原因,有什么想法吗?提前感谢您的任何建议或帮助,您可以推荐。
我已经有了一个运行xenial的系统,我需要验证特定端口是否为127.0.0.1打开,所以我决定安装telnet,只需尝试在这个特定端口上连接。
I've tried the following:
ron@regDesktopHome:/etc/ssl/certs$ sudo apt-get install telnetd -y
Reading package lists... Done
Building dependency tree
Reading state information... Done
telnetd is already the newest vers
我知道我错过了一些简单的东西。我正试图在centos 4.8服务器上安装/运行TFTP服务器。我做了以下工作:
( 1)以根的身份向shell认证。
2)安装tftp-server: yum install tftp-server (xinetd已安装btw)
3)编辑/etc/xinetd.d/tftp并设置disable = no
# default: off
# description: The tftp server serves files using the trivial file transfer \
# protocol. The tftp protocol i