Chinaunix首页 | 论坛 | 博客
  • 博客访问: 5379971
  • 博文数量: 890
  • 博客积分: 12876
  • 博客等级: 上将
  • 技术积分: 10760
  • 用 户 组: 普通用户
  • 注册时间: 2004-10-04 14:18
个人简介

猝然临之而不惊,无故加之而不怒。

文章分类

全部博文(890)

文章存档

2016年(1)

2014年(18)

2013年(41)

2012年(48)

2011年(65)

2010年(84)

2009年(121)

2008年(101)

2007年(129)

2006年(95)

2005年(118)

2004年(69)

分类: Oracle

2013-11-28 11:56:55

From:
http://blog.sina.com.cn/s/blog_6619c0420101bia8.html

Linux下自动启动多个oracle实例
—环境:

1> linux:linux4.5-32-bit-x86-setup

2> oracleracle Database10gRelease 2 (10.2.0.1.0) EnterpriseStandard Edition for Linux x86

--------------------------------------------------------
—操作详细过程:
[root@localhost ~]#cd /etc/rc.d/init.d
[root@localhost init.d]#touch dbauto              
用命令新建好文件(或是 在root用户etc/rc.d/init.d目录下直接新建文件),然后在文件中加入--下面--的脚本内容,保存
[root@localhost ~]# chmod 755 /etc/rc.d/init.d/dbauto    // 设置文件权限
[root@localhost ~]# ls -l /etc/rc.d/init.d/dbauto
-rwxr-xr-x  1 oracle oinstall 785 Oct 23 08:27 /etc/rc.d/init.d/dbauto
[root@localhost ~]# chkconfig --add dbauto   服务添加服务列表
[root@localhost ~]# chkconfig --level 345 dbauto on    //设置dbauto服务在指定的运行级别内被启动
[root@localhost ~]#vi dbauto  //添加下面内容

1)启动一个数据库实力时编写的脚本(取名dbauto)
#!/bin/bash
#
# chkconfig: 35 95 1
# description: init script. to start/stop oracle database10g, TNS
listener, EMS, isqlplus
#
#
#
# match these values to your environment:


export ORACLE_HOME=$ORACLE_BASE/product/10.2.0
# export ORACLE_TERM=xterm
export PATH=$PATH/ORACLE_HOME/bin
export NLS_LANG='american_america.ZHS16GBK'
export ORACLE_SID=orc1
# export DISPLAY=localhost:0
export ORACLE_USER=oracle

# see how we are called:
case $1 in
start)
su - "$ORACLE_USER"< lsnrctl start
sqlplus /nolog< connect / as sysdba
startup
EOS
emctl start dbconsole
isqlplusctl start
EOO
;;

stop)
su - "$ORACLE_USER"< lsnrctl stop
sqlplus /nolog< connect / as sysdba
shutdown immediate
EOS
emctl stop dbconsole
isqlplusctl stop
EOO
;;

*)
echo "Usage: $0 {start|stop}"
;;
esac

2)启动多个数据库实力时编写的脚本(取名dbauto)

//这个执行完成后所有实例都正常启动,服务正常运行============================================================
#!/bin/bash
#
# chkconfig: 35 95 1
# description: init script. to start/stop oracle database10g, TNS
listener, EMS, isqlplus
#
#
#
# match these values to your environment:


export ORACLE_HOME=$ORACLE_BASE/product/10.2.0
# export ORACLE_TERM=xterm
export PATH=$PATH/ORACLE_HOME/bin
export NLS_LANG='american_america.ZHS16GBK'
export ORACLE_SID=orc1
# export DISPLAY=localhost:0
export ORACLE_USER=oracle

# see how we are called:
case $1 in
start)
su - "$ORACLE_USER"< lsnrctl start
sqlplus /nolog < connect / as sysdba
startup
EOS
emctl start dbconsole
isqlplusctl start
#change ORACLE_SID
export ORACLE_SID=Test001
lsnrctl start
sqlplus /nolog < connect /as sysdba
startup
EOS
emctl start dbconsole
isqlplusctl start

EOO
;;

stop)
su - "$ORACLE_USER"< lsnrctl stop
sqlplus /nolog < connect / as sysdba
shutdown immediate
EOS
emctl stop dbconsole
isqlplusctl stop
#change ORACLE_SID
export ORACLE_SID=Test001
lsnrctl stop
sqlplus /nolog < connect / as sysdba
shutdown immediate
EOS
emctl stop dbconsole
isqlplusctl stop

EOO
;;

*)
echo "Usage: $0 {start|stop}"
;;
esac

注意:编辑好启动文件后,需要给予执行权限!

 


阅读(2563) | 评论(0) | 转发(1) |
给主人留下些什么吧!~~