您好,登錄后才能下訂單哦!
#!/bin/sh
#start mutli oralce instance
#create by zwy
#date 2017-10-25
port_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'
}
fi
cd $ORACLE_HOME
for sid in yzdk WANYZDK
do
export ORACLE_SID=$sid
echo $ORACLE_SID
sqlplus /nolog <<EOF
conn /as sysdba
startup
quit
EOF
sleep 10
echo $sid is starting
done
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。