靜默安裝、建庫(轉)
靜默安裝DB軟體:
設定responseFile檔案。
[oracle@stream ~]$ cd database/response
[oracle@stream database]$ vi db_install.rsp
修改db_install.rsp檔案的以下內容。
oracle.install.option=INSTALL_DB_SWONLY
UNIX_GROUP_NAME=oinstall
INVENTORY_LOCATION=/u01/app/oracle/oraInventory
ORACLE_HOME=/u01/app/oracle/product/11.2.0/dbhome_1
ORACLE_BASE=/u01/app/oracle
oracle.install.db.InstallEdition=EE
oracle.install.db.isCustomInstall=false
oracle.install.db.DBA_GROUP=dba
oracle.install.db.OPER_GROUP=dba
DECLINE_SECURITY_UPDATES=true
執行安裝命令。
[oracle@stream database]$ ./runInstaller -silent -
responseFile /home/oracle/database/response/db_install.rsp
Starting Oracle Universal Installer...
Checking Temp space:must be greater than 80 MB.Actual 10766 MB Passed
Checking swap space:must be greater than 150 MB.Actual 2020 MB Passed
Preparing to launch Oracle Universal Installer from
/tmp/OraInstall2012-03-01_10-06-14AM. Please wait ...
You can find the log of this install session at:
/u01/app/oraInventory/logs/installActions2012-03-01_10-06-14AM.log
此時,會在後臺進行資料庫軟體的安裝,可能需要挺長的時間,可以在開一個SHELL,去監控安裝資料庫時產生的日誌檔案。
[oracle@stream database]$ tail –f /u01/app/oraInventory/logs/
installActions2012-03-01_10-06-14AM.log
直到提示用root使用者執行/u01/app/oracle/product/11.2.0/dbhome_1/root.sh指令碼。
The following configuration scripts need to be executed
as the "root" user.
#!/bin/sh
#Root scripts to run
/u01/app/oraInventory/orainstRoot.sh
/u01/app/oracle/product/11.2.0/dbhome_1/root.sh
To execute the configuration scripts:
1. Open a terminal window
2. Log in as "root"
3. Run the scripts
4. Return to this window and hit "Enter" key to continue
新開啟一個SHELL,切換到root使用者執行上述2個指令碼。
[root@stream ~]# /u01/app/oraInventory/orainstRoot.sh
Changing permissions of /u01/app/oraInventory.
Adding read,write permissions for group.
Removing read,write,execute permissions for world.
Changing groupname of /u01/app/oraInventory to oinstall.
The execution of the script. is complete.
用root使用者執行完這兩個指令碼後,在執行靜默安裝的SHELL視窗按下Enter鍵,結束安裝過程。
DBCA靜默建庫:
1、修改responseFile檔案的以下內容:
[oracle@stream ~]$ vi database/response/dbca.rsp
RESPONSEFILE_VERSION = "11.2.0"
OPERATION_TYPE = "createDatabase"
GDBNAME = "STREAM"
SID = "stream"
TEMPLATENAME = "New_Database.dbt"
SYSPASSWORD = "oracle"
SYSTEMPASSWORD = "oracle"
SYSMANPASSWORD = "oracle"
DBSNMPPASSWORD = "oracle"
DATAFILEDESTINATION ="/u01/app/oracle/oradata/stream"
STORAGETYPE=FS
CHARACTERSET = "ZHS16GBK"
NATIONALCHARACTERSET= "AL16UTF16"
DATABASETYPE = "MULTIPURPOSE"
AUTOMATICMEMORYMANAGEMENT = "FALSE"
以上引數的含義如下:
RESPONSEFILE_VERSION:資料庫版本資訊。
OPERATION_TYPE:執行操作型別:建立資料庫、根據DB建立模板、
建立克隆模板、刪除資料庫、配置資料庫、新增例項(RAC環境下)、
刪除例項(RAC環境下)
GDBNAME:指定Global Name
SID:指定SID
TEMPLATENAME:模板名稱
SYSPASSWORD:SYS使用者密碼
SYSTEMPASSWORD:SYSTEM使用者密碼
SYSMANPASSWORD:SYSMAN使用者的密碼,當EM管理型別選擇local的時候需要
DBSNMPPASSWORD:DBS的密碼,當EM設定了之後需要
DATAFILEDESTINATION:資料庫檔案的存放目錄
STORAGETYPE:資料庫要建立在何種檔案型別FS、ASM等
CHARACTERSET:資料庫字符集
NATIONALCHARACTERSET:國家字符集
DATABASETYPE:指定資料庫的型別,有OLTP或者warehouse
AUTOMATICMEMORYMANAGEMENT:是否開啟AMM記憶體自動管理
2.配置好responseFile檔案以後,就可以開始靜默安裝了。
[oracle@stream database]$ dbca -silent -responseFile
/home/oracle/database/response/dbca.rsp
Copying database files
1% complete
3% complete
37% complete
Creating and starting Oracle instance
40% complete
45% complete
50% complete
55% complete
56% complete
60% complete
62% complete
Completing Database Creation
66% complete
70% complete
73% complete
85% complete
96% complete
100% complete
Look at the log file "/u01/app/oracle/cfgtoollogs/dbca/STREAM/
STREAM.log" for further details.
資料庫建立完成後,登入資料庫,驗證是否成功建立。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24966341/viewspace-753008/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 靜默安裝and手動建庫
- Windows 7平臺靜默安裝11.2.0.4軟體及靜默建庫Windows
- 靜默安裝Oracle建庫時報Template General Purpose does not existOracle
- 【配置安裝】Oracle靜默建庫for 12c&19c CDBOracle
- Oracle靜默安裝Oracle
- rac靜默安裝
- 【11g 單庫解除安裝、靜默安裝】實驗
- 靜默安裝Oracle資料庫11gOracle資料庫
- 靜默安裝Oracle11g資料庫Oracle資料庫
- Linux下靜默安裝OraceLinux
- 【靜默】在RHEL 6.5上靜默安裝Oracle 18cOracle
- AnolisOS 7.9 靜默安裝Oacle 11.2.0.4
- centos 7.4靜默安裝oracle 19.3CentOSOracle
- oracle 19C 靜默安裝Oracle
- 靜默安裝oracle時報錯Oracle
- 19c(19.3) 單機資料庫靜默安裝資料庫
- 靜默方式安裝、升級oracle(二): 建立資料庫Oracle資料庫
- 【配置安裝】靜默安裝Oracle資料庫軟體12c&19cOracle資料庫
- Oracle Linux 7.1 靜默安裝Weblogic 12.2.1.3OracleLinuxWeb
- 靜默方式安裝11gR2
- win10如何禁止靜默執行_win10禁止靜默安裝方法Win10
- 【配置上線】Oracle靜默建庫 for 11gOracle
- 【配置上線】靜默安裝資料庫Oracle 11gR2資料庫Oracle
- CentOS 7.5靜默安裝Oracle 11gCentOSOracle
- RedHat上靜默安裝Oracle11gRedhatOracle
- CentOS 7.2靜默安裝Oracle11gCentOSOracle
- redhat7.2靜默安裝Oracle11.2.0.4RedhatOracle
- 靜默方式安裝、升級oracle(一): 安裝oracle軟體Oracle
- 靜默安裝19C RAC的指令碼指令碼
- 靜默方式安裝oracle 11g 完整攻略Oracle
- oracle11g客戶端靜默安裝Oracle客戶端
- 靜默安裝11.2.0.1資料庫軟體報[FATAL] [INS-32035] Unable to create資料庫
- Oracle Linux 7.1 靜默安裝Oracle 18c RACOracleLinux
- windows10系統禁止靜默安裝的方法Windows
- linux7 靜默安裝 11GR2 RACLinux
- 應用黑名單以及靜默安裝的實現
- 靜默方式安裝、升級oracle(三): 升級資料庫軟體及資料庫Oracle資料庫
- Oracle 19C的下載和安裝部署(圖形安裝和靜默安裝)Oracle
- RedHat 7 靜默安裝Oracle11g的補充RedhatOracle