Linux下设置Oracle开机自动启动
在Linux系统中,安装好Oracle数据库服务后默认情况下并会随时系统的启动自动启动。需要用户去手动进行配置,才能实现Oracle开机自动启动的。下面雷雪松详细的讲解下Linux下如何设置Oracle开机自动启动。
1、测试Oracle dbstart和dbstut启动
[cc lang=”bash” escaped=”true”][oracle@oracle ~]$ /oracle/app/oracle/product/11.2.0/dbhome_1/bin/dbstart
ORACLE_HOME_LISTNER is not SET, unable to auto-start Oracle Net Listener
Usage: /oracle/app/oracle/product/11.2.0/dbhome_1/bin/dbstart ORACLE_HOME[/cc]
有报错信息,提示ORACLE_HOME_LISTNER is not SET,则需要修改Oracle dbstart和dbshut文件,如果没有dbshut文件则可以直接忽略。
2、修改Oracle dbstart和dbstut启动文件
[cc lang=”bash” escaped=”true”][oracle@oracle ~]$ vi /oracle/app/oracle/product/11.2.0/dbhome_1/bin/dbstart
//修改ORACLE_HOME_LISTNER为ORACLE_HOME
//ORACLE_HOME_LISTNER =$1
ORACLE_HOME_LISTNER=$ORACLE_HOME
[/cc]
[cc lang=”bash” escaped=”true”][oracle@oracle ~]$ vi /oracle/app/oracle/product/11.2.0/dbhome_1/bin/dbshut
//修改ORACLE_HOME_LISTNER为ORACLE_HOME
//ORACLE_HOME_LISTNER =$1
ORACLE_HOME_LISTNER=$ORACLE_HOME
[/cc]
3、在oratab文件中设置Oracle开机自启动,需要root权限
[cc lang=”bash” escaped=”true”][root@oracle ~]# vi /etc/oratab
//设置自启动
powerdes:/oracle/app/oracle/product/11.2.0/dbhome_1:Y[/cc]
4、在Linux系统rc.local里面设置开机自启动,需要root权限
[cc lang=”bash” escaped=”true”][root@oracle bin]# vi /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
su – oracle -lc “/oracle/app/oracle/product/11.2.0/dbhome_1/bin/lsnrctl start”
su – oracle -c “/oracle/app/oracle/product/11.2.0/dbhome_1/bin/dbstart”[/cc]
2019年4月13日 上午9:51
学到了
2019年5月10日 下午9:21
非常精彩的文章,引人入胜,痛快淋漓。感谢楼主分享。
2022年6月18日 下午6:00
你学会了啊?