首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 操作系统 > UNIXLINUX >

linux 起动关闭oracle脚本

2012-07-24 
linux 启动关闭oracle脚本自动启动ORACLE服务 在oracle用户下:vi Start_ORA.sh -------------------------

linux 启动关闭oracle脚本
自动启动ORACLE服务
在oracle用户下:
   vi Start_ORA.sh
--------------------------------
echo "Begin to start the oracle!"
lsnrctl start
sqlplus /nolog <<EOF
connect /as sysdba
startup
exit
EOF
echo "Oracle just have been started!"
exit

自动关闭ORACLE服务
vi Stop_ORA.sh
--------------------------------
echo "Begin to stop the oracle!"
sqlplus /nolog <<EOF
connect /as sysdba
shutdown immediate
exit
EOF
lsnrctl stop
echo "Oracle just have been stopped!"
exit

脚本编写完成后分别给这两个脚本执行权限
chmod a+x Start_ORA.sh
chmod a+x Stop_ORA.sh
将启动和关闭oracle脚本加到系统的开机自启动
vi /etc/rc.local
su - oracle -c "/home/oracle/Start_ORA.sh" #启动oracle

热点排行