Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Oracle DB booting and shutting down

2025-01-28 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

Refer to the section http://docs.oracle.com/database/122/UNXAR/stopping-and-starting-oracle-software.htm#UNXAR417 Automating Database Startup and Shutdown. [root@ecs-fb50-0002 ~] # cd / etc/init.d/ [root@ecs-fb50-0002 init.d] # vi dbora #! / bin/sh # description: Oracle auto start-stop script. # # Set ORACLE_HOME to be equivalent to the $ORACLE_HOME # from which you wish to execute dbstart and dbshut; # # Set ORA_OWNER to the user id of the owner of the # Oracle database in ORACLE_HOME.

ORA_HOME=/disk/oracle/product/11.2.0.4/db_1 ORA_OWNER=oracle

Case "$1" in 'start') # Start the Oracle databases: # The following command assumes that the oracle login # will not prompt the user for any values # Remove "&" if you don't want startup as a background process. Su-$ORA_OWNER-c "$ORA_HOME/bin/dbstart $ORA_HOME" & touch / var/lock/subsys/dbora

'stop') # Stop the Oracle databases: # The following command assumes that the oracle login # will not prompt the user for any values su-$ORA_OWNER-c "$ORA_HOME/bin/dbshut $ORA_HOME" & rm-f / var/lock/subsys/dbora;; esac

Chgrp dba dbora chmod 750 dbora

Ln-s / etc/init.d/dbora / etc/rc.d/rc0.d/K01dbora ln-s / etc/init.d/dbora / etc/rc.d/rc3.d/S99dbora ln-s / etc/init.d/dbora / etc/rc.d/rc5.d/S99dbora

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report