먼저 리눅스의 Telnet 설정은
vi /etc/xinetd.d/telnet
로 설정 할 수 있다.
열어보면
service
telnet
{
disable =
yes
flags
=
REUSE
socket_type
= stream
wait
= no
user =
root
server
=
/usr/sbin/in.telnetd
log_on_failure
+= USERID
}
여기서
disable = yes 부분을 no로 바꿔주고
슈퍼데몬 재시작..
# /etc/rc.d/init.d/xinetd restart
or
슈퍼데몬의 시작과 종료
;
/etc/rc.d/init.d/inet 스크립트 파일에 의해서 제어
A.
슈퍼데몬
시작 : /etc/rc.d/init.d/inet stop
B.
슈퍼데몬
종료 : /etc/rc.d/init.d/inet start
C.
슈퍼데몬
재시작 : /etc/rc.d/init.d/inet
restart
D.
슈퍼데몬
갱신하기 : /etc/rc.d/init.d/inet
reload
E. 슈퍼데몬 상태 보기 : /etc/rc.d/init.d/inet status
'PHP' 카테고리의 다른 글
php 함수 모음집 (0) | 2005.12.24 |
---|---|
새로 설치한 아파치 죽이는 방법 (0) | 2005.12.24 |
Mysql backup 하기! Mysql 백업 하기! (0) | 2005.12.24 |
mysql - too many connections 에러 해결책 (0) | 2005.12.24 |
MySQL 의 root 사용자 암호 바꾸기 (0) | 2005.12.24 |