Home >Database >Mysql Tutorial >Oracle随Linux自动启动的方法

Oracle随Linux自动启动的方法

WBOY
WBOYOriginal
2016-06-07 17:24:081011browse

1) 在/etc/oratab 中加,这个文件文件应是在装数据库时候,最后执行的root.sh生成的。 pwdb:/Oracle/procduct/10.2/db_1/:Y $ORA

1)

在/etc/oratab 中加,这个文件文件应是在装数据库时候,最后执行的root.sh生成的。

pwdb:/Oracle/procduct/10.2/db_1/:Y

$ORACLE_SID:$ORACLE_HOME:

 

2)

在/etc/rc.local中加入

su -oracle -c 'dbstart'

su -oracle -c 'lsnrctl start'

这个应该是在启动时用指定用户执行一些命令,

同理,一些其他的命令应该也可以写在这里,在启动时候一同执行。

 

3)

在 $ORACLE_HOME/bin/dbstart 文件中加

ORACLE_HOME_LISTNER='/ade/....'

改成

ORACLE_HOME_LISTNER=$ORACLE_HOME

第三步在网络上的资料上写了,但没看出有什么作用,

也许是针对旧版本写的。

完成这几部以后,重启linux,等启动完成,直接连数据库发现数据和tns都已经启动完成。

 

还有一种方法:

在/etc/rc.d/init.d中加一个文件,我这里叫oradb

内容如下,,从网上拷来的,做了一点修改。

####################################
#!/bin/bash
# chkconfig: 35 95 1
# description: init script. to start/stop oracle database 10g, TNS listener, EMS
#
#
# 根据自己需要把变量值进行设定:
export ORACLE_BASE=/u01
export ORACLE_HOME=$ORACLE_BASE/oracle
export ORACLE_SID=huang
export PATH=/home/oracle/bin:$ORACLE_HOME/bin:$PATH
export ORACLE_USER=oracle

 

# 根据$1参数的不同做两种操作,启动和关闭:
case $1 in
start)
su - "$ORACLE_USER"lsnrctl start
dbstart
EOS
#启动oem

#emctl start dbconsole
EOO
;;

stop)
su - "$ORACLE_USER"lsnrctl stop
dbshut
EOS

#关闭ocm
#emctl stop dbconsole
EOO
;;

*)

#其他输入,给出语法格式
echo "Usage: $0 {start|stop}"
;;
esac
###################################

 

保存,后修改所属组和权限。

chown oracle:oinstall oradb
chmod 755 oradb

 

chkconfig oradb on

chkconfig --list oradb

 

可以使用启动服务、停止服务

service oradb start
service oradb stop

linux

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn