Linux系统中的rc.local自启动服务
lux有自己一套完整的启动体系,抓住了lux启动的脉络,lux的启动过程将不再神秘。
本文中假设ittab中设置的it tree为
/etc/rc.d/rc0.d
/etc/rc.d/rc1.d
/etc/rc.d/rc2.d
/etc/rc.d/rc3.d
/etc/rc.d/rc4.d
/etc/rc.d/rc5.d
/etc/rc.d/rc6.d
/etc/rc.d/it.d
目录
1. 关于lux的启动
2. 关于rc.d
3. 启动脚本示例
4. 关于rc.local
5. 关于bash启动脚本
6. 关于开机程序的自动启动
1. 关于lux的启动
it是所有进程的顶层
it读取/etc/ittab,执行rc.sysit脚本
(注意文件名是不一定的,有些unix甚至会将语句直接写在ittab中)
rc.sysit脚本作了很多工作:
it $PATH
config work
start swap function
set hostname
check root file system, repair if needed
check root space
....
rc.sysit根据ittab执行rc?.d脚本
lux是多用户系统,getty是多用户与单用户的分水岭
在getty之前运行的是系统脚本
2. 关于rc.d
所有启动脚本放置在 /etc/rc.d/it.d下
rc?.d中放置的是it.d中脚本的链接,命名格式是:
S{number}{name}
K{number}{name}
S开始的文件向脚本传递start参数
K开始的文件向脚本传递s参数
number决定执行的顺序
3. 启动脚本示例
这是一个用来启动httpd的 /etc/rc.d/it.d/apache 脚本
代码:
#!/b/bash
......
可以看出他接受start,s,restart,status参数
然后可以这样建立rc?.d的链接
代码:
cd /etc/rc.d/it.d &&
ln -sf ../it.d/apache ../rc0.d/K28apache &&
ln -sf ../it.d/apache ../rc1.d/K28apache &&
ln -sf ../it.d/apache ../rc2.d/K28apache &&
ln -sf ../it.d/apache ../rc3.d/S32apache &&
ln -sf ../it.d/apache ../rc4.d/S32apache &&
ln -sf ../it.d/apache ../rc5.d/S32apache &&
ln -sf ../it.d/apache ../rc6.d/K28apache
4. 关于rc.local
经常使用的 rc.local 则完全是习惯问题,不是标准。
各个发行版有不同的实现方法,可以这样实现
代码:
touch /etc/rc.d/rc.local
chmod +x /etc/rc.d/rc.local
ln -sf /etc/rc.d/rc.local /etc/rc.d/rc1.d/S999rc.local &&
ln -sf /etc/rc.d/rc.local /etc/rc.d/rc2.d/S999rc.local &&
ln -sf /etc/rc.d/rc.local /etc/rc.d/rc3.d/S999rc.local &&
ln -sf /etc/rc.d/rc.local /etc/rc.d/rc4.d/S999rc.local &&
ln -sf /etc/rc.d/rc.local /etc/rc.d/rc5.d/S999rc.local &&
ln -sf /etc/rc.d/rc.local /etc/rc.d/rc6.d/S999rc.local
5. 关于bash启动脚本
/etc/profile
/etc/bashrc
~/.bash_profile
~/.bashrc
是bash的启动脚本
一般用来设置单用户的启动环境,也可以实现开机单用户的程序,但要明确他们都是属于bash范畴而不是系统范畴。
他们的具体作用介绍如下
/b/bash这个命令解释程序(后面简称shell)使用了一系列启动文件来建立一个运行环境
/etc/profile
/etc/bashrc
~/.bash_profile
~/.bashrc
~/.bash_logout
每一个文件都有特殊的功用并对登陆和交互环境有不同的影响。
/etc/profile 和 ~/.bash_profile 是在启动一个交互登陆shell的时候被调用。
/etc/bashrc 和 ~/.bashrc 是在一个交互的非登陆shell启动的时候被调用。
~/.bash_logout 在用户注销登陆的时候被读取
一个交互的登陆shell会在 /b/log 成功登陆之后运行。一个交互的非登陆shell是通过命令行来运行的,如[prompt]$/b/bash。一般一个非交互的shell出现在运行 shell脚本的时候。之所以叫非交互的shell,是因为它不在命令行上等待输入而只是执行脚本程序。
6. 关于开机程序的自动启动
系统脚本可以放置在/etc/rc.d/it.d中并建立/etc/rc.d/rc?.d链接,也可以直接放置在/etc/rc.d/rc.local中。
it.d脚本包含完整的start,s,status,reload等参数,是标准做法,推荐使用。
为特定用户使用的程序(如有的用户需要使用中文输入法而有的不需要)放置在~/中的bash启动脚本中。
========================================================================
设置系统自动启动
在/etc/it.d/下创建smsafe文件
内容
#!/b/bash
# chkconfig: 35 95 1
# description: script to start/s smsafe
case $1
start)
sh /opt/startsms.sh
;;
s)
sh /opt/ssms.sh
;;
)
echo "Usage: $0 (start|s)"
;;
esac
更改权限
# chmod 775 smsafe加入自动启动
# chkconfig –add smsafe查看自动启动设置
# chkconfig –list smsafesmsafe 0:off 1:off 2:off 3:on 4:off 5:on 6:off
以后可以用以下命令启动和停止脚本
# service smsafe start 启动# service smsafe s 停止
=======================================================================
jira 的启动主要依靠的是b目录下的catala.sh脚本,提供了如it脚本的start,s等参数#!/b/bash
#
# chkconfig: 2345 85 15
# description: jira
# processname: jira
# source function library
. /etc/it.d/functions
#下面一行比较重要,为jira的安装路径,没有的话,将会提示找不到文件
CATALINA_HOME="/var//jira"
RETVAL=0
start() {
echo -n $"Startg jira services: "
. /var//jira/b/catala.sh start
RETVAL=$?
echo
}
s() {
echo -n $"Shuttg down jira services: "
. /var//jira/b/catala.sh s
RETVAL=$?
echo
}
case "$1"
start)
start
;;
s)
s
;;
restart|reload)
s
start
;;
status)
status jira
RETVAL=$?
;;
)
echo $"Usage: $0 {start|s|restart|status}"
exit 1
esac
exit $RETVAL
-------------------------------
保存为/etc/it.d/jira
然后利用chkconfig --add jira
OK
启动/etc/it.d/jira start
停止/etc/it.d/jira s
=======================================================================
(以Websphere为例子)
1. 在/etc/rc.d/it.d目录下新建启动脚本startWebsphere,键入以下内容
#!/b/sh
/opt/WebSphere/AppServer/b/startServer.sh server1
修改该文件的权限
chmod 755 startWebsphere
2. 在对应的目录下建立软连接(假设系统默认进入X11)
cd /etc/rc.d/rc5.d
ln -s ../it.d/startWebsphere S99startWebsphere
3. 重启系统即可
=======================================================================
lux下oracle的自启动脚本
1.写一个StartOracle.sql,假设放在/目录下
vi /StartOracle.sql加入如下两行保存
startup
exit
2.配置/etc/rc.local
vi /etc/rc.local加入如下内容,保存
su - oracle -c '$ORACLE_HOME/b/lsnrctl start'
su - oracle -c '$ORACLE_HOME/b/sqlplus "/as sysdba" @/StartOracle.sql'
3. 如果还要自动启动oracle enterprise manager(em)和isqlplus可以如下配置
vi /etc/rc.local 加入
su - oracle -c '$ORACLE_HOME/b/emctl start dbconsole'
su - oracle -c '$ORACLE_HOME/b/isqlplusctl start'
要知道em和isqlplus等使用的端口可以查询文件
$ORACLE_HOME/stall/portlist.i(以oracle 10.1.0.3为例)
=======================================================================
#root命令行下直接绑定演示
arp -s 192.x.x.x. 00:ea:se绑定.
arp -d 删除
arp -f 批量导入
网络推广
- 5g网络有多快:5g网络网速有多快
- dota2无法连接至steam网络 为什么无法连接dota2网络
- 无线网络信号接收器 无线网络信号接收器怎么用
- 网络延时是什么意思 网络延时是什么原因
- 无线网络不可用:无线网络不可用是什么原因
- 网络广告销售技巧 网络广告销售技巧有哪些
- 智能手机网络设置 智能手机网络设置在哪里
- 为什么找不到无线网络 为什么找不到无线网络信
- 网络这么赚钱:网络怎么能赚到钱
- 为什么无线网络连接不上 为什么无线网连不起来
- 网络上的人际交往 网络上人际交往的优势
- 支付宝网络系统异常 支付宝显示网络异常什么时
- 营销软件:营销软件有哪些
- 无法访问您要使用的功能所在的网络位置
- 网络安全基本知识 网络安全基本知识有哪些
- 什么网络电话最好用 什么网络电话最好用最便宜