技术小站

Linux 下 oracle 启动与停止脚本

Linux下的脚本

# vi /etc/app/dbstart.sh

sleep 30    //等待30秒,可以不用
su - oracle <<EOF
lsnrctl start
sqlplus /nolog
connect / as sysdba
startup
exit
exit 
EOF


# vi /etc/app/dbstop.sh

su - oracle <<EOF
lsnrctl stop
sqlplus /nolog
connect / as sysdba
shutdown immediate
exit
exit 
EOF
sleep 30    //等待30秒,可以不用


原创文章请注明转载自技术小站本文地址:http://www.i5i6.net/post/112.html,标题:Linux 下 oracle 启动与停止脚本

打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,你说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

【我来说两句】
分享到:

精彩推荐:

相关文章:

CentOS 7 Linux samba 文件共享  (2022-11-5 19:31:25)

Centos 7 下 pure-ftpd搭建ftp服务器  (2022-5-9 9:56:0)

CentOS Linux系统通过串口console口连接配置网络设备  (2022-2-15 8:5:52)

CentOS 7 单用户修改root密码  (2021-5-25 10:37:24)

redhat 6.5 安装oracle 11gR2 完全手册 图文教程  (2017-9-11 15:20:9)

联想ThinkServer服务器安装CentOS7 Redhat7系统 驱动R110i RAID卡  (2017-4-12 17:27:17)

Linux 下 iSCSI存储开机自动挂载  (2017-3-27 13:42:36)

Linux xfs文件系统 格式化超过16T分区  (2016-10-30 19:46:44)

centos7 rhel7安装配置vnc server  (2016-4-19 8:40:22)

CentOS 7 and RedHat 7 时间同步即chrony服务配置  (2016-4-16 16:58:7)

评论 0