RedHat6.3 安装oracle11GR2 详细整理(针对初学linux者)复习过程 下载本文

精品文档

现在可以开始安装应用了,解开 Oracle 的源代码,并执

行 ./runInstaller。如果你按上述要求正确配置了系统参数,安装过程应该不会有太多问题。如果遇到错误的话,你可以查看安装的日志文件以获得详细的错误信息。在安装的过程中,系统会询问你 SYSMAN 的密码,请把它记下来,后续我们会用它来登录到 Web Console。

在安装接近尾声的时候,会要求你以 root 权限运行一到两个脚本,你只需要打开一个终端,运行 su – ,然后根据系统提示的路径去运行脚本。

启动或停止 Oracle

有时候你可能需要启动或者停止 Oracle 的运行,你可以运行下面的命令

emctl start dbconsole lsnrctl start dbstart

要停止 Oracle 数据库,则运行: emctl stop dbconsole lsnrctl stop dbstop

自动启动 Oracle 服务

收集于网络,如有侵权请联系管理员删除

精品文档

每次输入命令行来启动或停止 Oracle 数据库总是不方便,最简单的办法还是在操作系统启动的时候自动启动 Oracle服务。具体办法如下:

1. 首先编辑 /etc/oratab 文件,将:

orcl:/home/oracle/app/dbhome:N 修改为:

orcl:/home/oracle/app/dbhome:Y 2. 创建启动脚本: vi /etc/init.d/dbora 其内容如下:

#!/bin/sh # chkconfig: 345 99 10 # description: Oracle auto start-stop script. # 收集于网络,如有侵权请联系管理员删除

精品文档

# Set ORA_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 ORA_HOME. ORA_HOME=/home/oracle/app/dbhome ORA_OWNER=oracle if [ ! -f $ORA_HOME/bin/dbstart ] then echo \exit fi 收集于网络,如有侵权请联系管理员删除

精品文档

case \‘start’) # Start the Oracle databases: # The following command assumes that the oracle login # will not prompt the user for any value su – $ORA_OWNER -c \dbconsole\su – $ORA_OWNER -c \su – $ORA_OWNER -c $ORA_HOME/bin/dbstart ;; ‘stop’) # Stop the Oracle databases: # The following command assumes that the oracle login 收集于网络,如有侵权请联系管理员删除