欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Oracle怎么在Linux下设置自启?

程序员文章站 2023-10-01 23:59:46
Oracle怎么在Linux下设置自启? 1.首先修改/etc/oratab文件添加如下行: ycr:/u01/app/oracle/product/12.1.0/dbhome...

Oracle怎么在Linux下设置自启?

1.首先修改/etc/oratab文件添加如下行:

ycr:/u01/app/oracle/product/12.1.0/dbhome_1:Y

2.修改文件/etc/rc.d/rc.local,添加如下行:

su oracle -lc “/u01/app/oracle/product/12.1.0/dbhome_1/bin/lsnrctl start”

su oracle -lc “/u01/app/oracle/product/12.1.0/dbhome_1/bin/dbstart”

3.编辑dbstart

进入bin编辑dbstart

vim dbstart

ORACLE_HOME_LISTNER=$1

改为

ORACLE_HOME_LISTNER=$ORACLE_HOME