centeros 自动启动oracle

前端之家收集整理的这篇文章主要介绍了centeros 自动启动oracle前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1、修改环境变量:
root 用户下运行:vi /etc/profile
将下边的行加到最后

export ORACLE_BASE=/data/oracle
export ORACLE_HOME=$ORACLE_BASE/product/11.2.0
export ORACLE_SID=orcl
export PATH=$ORACLE_HOME/bin:/usr/sbin:$PATH
export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib

2、修改/etc/oratab
将orcl:/data/oracle/product/11.2.0:N 修改为orcl:/data/oracle/product/11.2.0:Y

3、修改/etc/rc.d/rc.local

将下边行加到最后:

su oracle -lc "/data/oracle/product/11.2.0/bin/lsnrctl start"
su oracle -lc /data/oracle/product/11.2.0/bin/dbstart

4、修改 /ect/rc.d/rc.local 权限,让它可以运行

chmod +x /etc/rc.d/rc.local

重启即可。

前提:需确保手段可以启动oracle

手动启动:

1、启动监听:

lsnrctl start

2、进入数据库

sqlplus / as sysdba

3、启动数据库

sql>startup;
原文链接:https://www.f2er.com/oracle/208514.html

猜你在找的Oracle相关文章