linux学习笔记: 系统服务介绍

一.chkconfig --list 列出所有服务器的runlevel的开机状态
   设置服务开机启动:chkconfig httpd on
   查看服务的启动状态:chkconfig --list httpd
   使服务不随开机启动:chkconfig httpd off
   chkconfig httpd --del 会删除/etc/rc*.d中httpd文件,该命令会删除所有runlevel级别下的对应的httpd文件
   chkconfig httpd --add 将文件添加回来
   将自行开发的程序设为开机启动:把文件放入/etc/init.d目录中,使用chkconfig myprog -add
   ls -l /etc/rc*.d/myprog

二.Xinetd manage services
  xinetd超级服务进程,用以调用很少使用的服务,使用/etc/services配置文件夹,其中端口和服务对应
  

你可能感兴趣的:(rh253-1)