当前位置:Linux教程 - Linux文化 - AS3 下的各种服务怎样启动

AS3 下的各种服务怎样启动


>>> 此贴的回复 >> 1. check whether the service is installed # chkconfig --list # rpm -qa | grep telnet-server

2. install the service package (e.g., telnet-server) if not installed. # rpm -ivh /SW/RedHat/RPMS/telnet-server-0.17-26.i386.rpm

3. enable the service # chkconfig telnet on

4. start the service if the service is not one of xinetd based services. that is, no need to do this step for telnet, ftp, etc.

# service cups start