博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
关于ubuntu服务器的启动管理器upstart
阅读量:6226 次
发布时间:2019-06-21

本文共 789 字,大约阅读时间需要 2 分钟。

本文主要写了upstart的启动控制原理。这篇文章的目的在于可以人为的控制upstart初始的的运行等级。

此外,本文附带了大量真实的SHELL脚本文件的内容,这些内容都是服务器刚刚初始化完成后的命令,即$RUNLEVEL的的值并没有遭到任何修改。
 

{未完成,待续}

/etc/inint.d/rc

 cat rc.conf

# rc - System V runlevel compatibility
#
# This task runs the old System V-style rc script when changing between
# runlevels.

description     "System V runlevel compatibility"

author          "Scott James Remnant <>"

emits deconfiguring-networking

emits unmounted-remote-filesystems

start on runlevel [0123456]

stop on runlevel [!$RUNLEVEL]

export RUNLEVEL

export PREVLEVEL

console output

env INIT_VERBOSE

task

exec /etc/init.d/rc $RUNLEVEL

 

 

 

 cat rcS

#! /bin/sh
#
# rcS
#
# Call all S??* scripts in /etc/rcS.d/ in numerical/alphabetical order
#

exec /etc/init.d/rc S

 

本文转自 urey_pp 51CTO博客,原文链接:,http://blog.51cto.com/dgd2010/728803如需转载请自行联系原作者

你可能感兴趣的文章
我的友情链接
查看>>
oracle exp imp 导入导出
查看>>
七亿政策资金撬动云计算万亿产业潮
查看>>
cogs p服务点设置
查看>>
java 设计模式-动态代理
查看>>
xml学习笔记(第二篇DTD)
查看>>
把U盘制作成多重启动盘并集成linux安装盘
查看>>
内存条对电脑的速度影响
查看>>
PostgreSQL锁查询与杀掉进程说明
查看>>
idea进行断点快捷键
查看>>
Windows 7远程管理Exchange2010
查看>>
cacti 监控linux TCP端口连接数
查看>>
Linux修改显示亮度
查看>>
lnmp+zabbix一键部署脚本
查看>>
其实你还不懂word
查看>>
vcSA修改IP或hostname
查看>>
写给刚入行的新人和技术控们
查看>>
python运维开发之socket网络编程02
查看>>
每次访问都生成不一样sessionId
查看>>
vmware esxi安装linux启动在Starting udev 停止
查看>>