ORACLE 10G R2的静默安装和创建数据库(runInstaller和dbca)

1、环境
  •      CentOS-4.7-i386-binDVD.iso
         10201_database_linux32.zip
  • 服务器启动到文本方式
 cat /etc/inittab
 
 id:3:initdefault:
  • ssh远程登录
2、静默安装ORACLE
#!/bin/sh
su - oracle -c "/database/runInstaller -silent -responseFile /sh/enterprise01.rsp"
/opt/oracle/oraInventory/orainstRoot.sh
/opt/oracle/product/10.2.0.1/root.sh
3、静默创建ORACLE数据库
#!/bin/sh
su - oracle -c "/opt/oracle/product/10.2.0.1/bin/dbca -silent -createdatabase -responseFile /sh/dbca.rsp"

你可能感兴趣的:(安装,模板,静默安装,创建数据库,响应文件)