linux 下 osw随操作系统启动而自动启动的标准脚本

linux 下 osw随操作系统启动而启动的标准脚本。osw是指--os watcher,这是一个监控os各项指标的shell脚本。osw的监控数据一般用于oracle技术人员评估os各项资源的使用情况,该使用情况会作为oracle 技术人员评估一些oracle 数据库行为(比如节点驱逐等)的参考依据。

 

[oracle@rac2 ~]$ cat /etc/rc.local
#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.
touch /var/lock/subsys/local
 
 
/bin/sh /home/oracle/oswbb/autostartosw.sh
--->上面一行是新加的


/home/oracle/oswbb/autostartosw.sh的脚本内容如下:
cd /home/oracle/oswbb
/usr/bin/nohup /home/oracle/oswbb/startOSWbb.sh &
 
注意:此时的osw安装在/home/oracle/oswbb目录中。

 

你可能感兴趣的:(oracle,OS,Watcher,osw)