第一步:修改/etc/oratab文件,命令如下:
[oracle@sotool-oracle ~]$ vi /etc/oratab
orcl:/data/oracle/product/11.2.0/db_1:N
改成:
orcl:/data/oracle/product/11.2.0/db_1:Y
第二步:把lsnrctl start和dbstart添加到rc.local文件中,命令如下:
[oracle@sotool-oracle ~]$ vi /etc/rc.d/rc.local
新增两行信息,就是我们的数据库也监听器启动的命令:
su oracle -lc "/data/oracle/product/11.2.0/db_1/bin/lsnrctl start"
su oracle -lc /data/oracle/product/11.2.0/db_1/bin/dbstart
三、 oracle用户编辑dbstart
进入$ORACLE_HOME/bin
将 ORACLE_HOME_LISTNER=$1 修改为 ORACLE_HOME_LISTNER=$ORACLE_HOME
接着看一下我们的文件有没有执行权限:
[oracle@sotool-oracle ~]$ cd /etc/rc.d/
[oracle@sotool-oracle rc.d]$ ll
total 36
drwxr-xr-x. 2 root root 4096 Jun 12 11:02 init.d
-rwxrwxrwx 1 root root 601 Jun 27 09:25 rc.local
第四步:root reboot服务器后,查询数据库状态
[oracle@sotool-oracle ~]$ sqlplus / as sysdba
SQL> select instance_name,status from v$instance;
这种情况就是说明数据库启动了。下面我们查询监听器启动状态。
[oracle@sotool-oracle ~]$ lsnrctl status
原文链接:https://blog.csdn.net/yexiaomodemo/article/details/93849386
原文链接:https://www.cnblogs.com/yangxuyang/p/11463285.html