suse 服务启动顺序

This item inspired by Ken. And in order to keep this answer relatively short, I have to skip a bunch of pre-reqs. I’m going to assume that you understand service startup and run-levels in Linux, and maybe have tried specifying start-order in RedHat… This is where my thinking went when answering the question for Ken, so that’s what you get here. Anyway, back to the question at hand…

You don’t. ;) Just kidding… *kinda*…

So you already know how to cause services to start and stop at various runlevels using the chkconfig tool on RedHat (and the RedHat derivatives, which I just refer to as RedHat) and Suse, or the insserv tool on Suse. But *now* what you want to do is enforce the service load sequence by number.

“Ah-hah!”, you say, because you are an old-school Unix guy (yes, Your Linux Guy knows about you and your ways ;) ), and you know that all you have to do is hand-write a script, and throw it (or a symlink) into the appropriate rc[?].d directory, right? Wrong. Well, you *could* do that, but as soon as you run chkconfig on Suse, it will re-order your service based on some other criteria… more on that in a moment.

First some background on RedHat…

Many of you are used to the tool chkconfig . In order to specify load order in RedHat, you make sure that one important line similar to the following exists in the start script in the /etc/rc.d/init.d directory:

# chkconfig: 35 98 01

…note that the leading pound/hash symbol indicates that it is a comment; this is important. Then, after the chkconfig: , the next items are as follows: runlevels in which to start (3 and 5), start sequence number (98, which is very late in the order), and stop/kill sequence number (01). Yours, of course, will vary. And — very important here, folks — you need to run chkconfig after your modifications for it to take effect; it goes through and reads all those comments and places things in the appropriate place.

Now, on to the Suse insserv method…

Suse uses a similar philosophy to RedHat’s chkconfig with insserv only insofar as there are a certain set of comments in the start script required to enforce start order. However, instead of you having the luxury of being able to specify *the exact number* for the startup script, you only get to specify things that should be started *before* or *after* your script. This will effectively do the same thing with the arrangement, though you might not get the pretty number S98 you were hoping for.

So, specifically, here is an example comment block with just a reasonable minimum, for a fake application called myapp :

### BEGIN INIT INFO
# Provides: myapp
# Required-Start: $ALL
# Default-Start: 3 5
# Default-Stop: 0 1 2 4 6
# Description: My App is cool
# Short-Description: My App
### END INIT INFO

…this example will cause myapp to be one of the last things loaded (the $ALL is a special value, see below), in runlevel 3 or 5, and will stop at all other levels. On my machine, it puts myapp at S21 , right before S21SuSEfirewall2_setup , which is numerically equal, but alphabetically later. And — just like with RedHat — you must run chkconfig or the Suse tool insserv for the scripts to be re-arranged and placed, ready to run. Its important to remember that on Suse, chkconfig is just a child to insserv , it is not the same exact tool as on RedHat. But like on RedHat, it will parse the comments fields and place the script in the appropriate places.

Now here’s how that actually works on Suse…
For Suse, the “Provides:” item in the script creates something called a “facility”. So in my example above, I’ve created a facility called “myapp “. Then, others scripts can reference that facility in specifying whether they should load before or after. For example, the sshd startup script provides a “sshd ” facility (it does not have to be the same name as the daemon), so I could have put the following in my myapp script:

# Required-Start: $sshd

…and then myapp would have been placed to start right after sshd in the appropriate /etc/init.d/rc[?].d directory. On my machine, sshd is at S12 … so if I did that, myapp would likely be at S13 (the next higher number). Note that the facility is prefixed by a dollar-sign when it referenced/called, but not when it is created in the “Provides: ” line. Also, the $ALL is a special all-inclusive facility value that means “all facilities”, and when used, it causes your script to be loaded after all others.

Warning: Some of the startup scripts in Suse have the RedHat chkconfig syntax in them. Why? To mess with you. No, not really, but that’s what it did to me when I was first figuring this stuff out. Especially since Suse has the chkconfig binary (which works on Suse to a lesser extent than on RedHat) for your convenience… and confusion…

Phew! Got it? Good.

Make sure to let me know if I missed something…

:)

原文出处:http://yourlinuxguy.com/?p=41

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

zxhyxwwu

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值