oracle 多实例自动启动脚本

前端之家收集整理的这篇文章主要介绍了oracle 多实例自动启动脚本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

#!/bin/sh#start mutli oralce instance#create by zwy#date 2017-10-25port_cnt=`ss -lnp|grep 1521|wc -l`if (( $port_cnt < 1 ));then{ lsnrctl start & port_cnt=`ss -lnp|grep 1521|wc -l` while (( $port_cnt < 1 )) do { echo 'ora lsnrctl is not running' lsnrctl start & port_cnt=`ss -lnp|grep 1521|wc -l` } done echo 'ora lsnrctl is running'}else{ echo 'ora lsnrctl is running'}ficd $ORACLE_HOMEfor sid in yzdk WANYZDKdoexport ORACLE_SID=$sidecho $ORACLE_SIDsqlplus /nolog <<EOFconn /as sysdbastartupquitEOFsleep 10echo $sid is startingdone

原文链接:https://www.f2er.com/oracle/207032.html

猜你在找的Oracle相关文章