linux的telnet命令安裝
linux的telnet命令安裝
linux下telnet命令的安裝可以通過相關(guān)命令來執(zhí)行,下面由學(xué)習(xí)啦小編為大家整理了linux的telnet命令安裝的相關(guān)知識,希望對大家有幫助!
linux的telnet命令安裝
一、安裝telnet
1、檢測telnet-server的rpm包是否安裝
[root@localhost ~]# rpm -qa telnet-server
若無輸入內(nèi)容,則表示沒有安裝。出于安全考慮telnet-server.rpm是默認(rèn)沒有安裝的,而telnet的客戶端是標(biāo)配。即下面的軟件是默認(rèn)安裝的。
2、若未安裝,則安裝telnet-server,否則忽略此步驟
[root@localhost ~]#yum install telnet-server
3、檢測telnet-server的rpm包是否安裝
[root@localhost ~]# rpm -qa telnet
telnet-0.17-47.el6_3.1.x86_64
4、若未安裝,則安裝telnet,否則忽略此步驟
[root@localhost ~]# yum install telnet
二、重新啟動xinetd守護(hù)進(jìn)程
由于telnet服務(wù)也是由xinetd守護(hù)的,所以安裝完telnet-server,要啟動telnet服務(wù)就必須重新啟動xinetd
[root@locahost ~]#service xinetd restart
三、測試
我們先來查看TCP的23端口是否開啟正常
[root@localhost ~]#netstat -tnl |grep 23
tcp 0 0 0.0.0.0:23 0.0.0.0:* LISTEN
如果上面的一行存在就說明服務(wù)已經(jīng)運(yùn)行了。如果netstat命令沒有返回內(nèi)容,我們就只好繼續(xù)進(jìn)行更深入的配置了。
四、連接到 memcached
telnet ip 端口,如:
[root@localhost proc]# telnet localhost 11211
Trying ::1...
Connected to localhost.
Escape character is '^]'.
表明連接成功。
(stats查看狀態(tài),flush_all:清楚緩存)
補(bǔ)充:linux的telnet命令安裝遇到的問題及解決方法
1、telnet: connect to address 127.0.0.1: Connection refused的錯誤信息
[root@localhost software]# telnet localhost 11211
Trying ::1...
telnet: connect to address ::1: Connection refused
Trying 127.0.0.1...
telnet: connect to address 127.0.0.1: Connection refused
[root@localhost software]# rpm -qa telnet-server
檢查原因是沒有安裝telenet-server的服務(wù)。
解決方法:[root@localhost software]# yum install telnet-server
2、[root@localhost ~]#netstat -tnl |grep 23 沒有返回內(nèi)容
解決方法:
[root@localhost ~]vi /etc/xinetd.d/telnet
service telnet
{
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/sbin/in.telnetd
log_on_failure += USERID
disable = yes
}
將disable項由yes改成no。
[root@localhost ~]/etc/init.d/xinetd restart