Linux启动及控制服务进程

类别:网站制作 点击:0 评论:0 推荐:

1、  BIOS自检

2、  运行系统内核并检测硬件

3、  运行系统的第一个进程init

4、  init读取系统引导配置文件/etc/inittab中的信息进行初始化

l         /etc/rc.d/rc.sysinit------系统初始化脚本

l         /etc/rc.d/rcX.d/[KS]*------根据运行级别配置服务

l         /etc/rc.d/rc.local---------执行本地特殊配置

l         其它---------不同运行级别的特殊服务

 

/* 守护进程 */

//概念

通常Linux系统上提供服务的程序是由运行在后台的守护程序(daemon)来执行的。Windows系统中这些程序被称为“服务”。

守护进程的工作就是打开的一个端口,并且等待进入的连接。

//运行方式

1、  独立进程运行

l         由init脚本负责管理

l         其脚本存放在/etc/init.d/目录下

l         所有的系统服务都是独立运行的。

2、  由网络守护进程服务程序运行

l         由xinetd启动

l         由xinetd管理的守护进程的配置文件存在/etc/xinetd.d/目录下

l         默认的xinetd的配置文件是/etc/xinetd.conf

l         xinetd本身是独立运行的守护进程

//查看进程树

# pstree

 

/etc/xinetd.conf文件

#

# Simple configuration file for xinetd

#

# Some defaults, and include /etc/xinetd.d/

 

defaults     //所有服务的缺省值

{

        //同时运行最大进程数

        instances               = 60   

        //指定使用syslogd进行服务登记

        log_type                = SYSLOG authpriv

        //指定成功时登记客户机制IP和进程的PID

        log_on_success          = HOST PID

        log_on_failure          = HOST

        cps                     = 25 30

}

 

includedir /etc/xinetd.d

 

/etc/xinetd.d/telnet

# default: on

# description: The telnet server serves telnet sessions; it uses \

#       unencrypted username/password pairs for authentication.

service telnet

{

        //表示当前不允许这项服务

        disable = yes

        //表示中断或重启xinetd时,TCP/IP Socket可重用

        flags           = REUSE

        //使用的TCP的Socket类型

        socket_type     = stream

        //为NO,表示提供多线程功能

        wait            = no

        //表示设置进程的UID

        user            = root

        //服务程序的完事路径

        server          = /usr/sbin/in.telnetd

        //将失败的UID添加到系统登记表中

        log_on_failure  += USERID

}

 

//启动进程的文本工具

# ntsysv

# chkconfig –list [server-name]

# chkconfig –add server-name

# chkconfig –del server-name

# chkconfig [–level levels] server-name

# chkconfig [–level levels] server-name <on | off | reset>

如果有什么问题,请发邮件:[email protected]

本文地址:http://com.8s8s.com/it/it31384.htm