【配置安裝】Oracle靜默建庫for 12c&19c CDB
Oracle 靜默建庫 for 12c&19c CDB
12c&19c 在靜默建庫對比 11g ,有變化的引數主要是建立 CDP 。其他地方變化不大。做一遍,踩踩坑。
使用靜默dbca 建立資料庫有兩種方法:
1 )一種是根據 oracle 自身的資料庫模板建立資料庫(建議),資料庫模板位置 $ORACLE_HOME/assistants/dbca/templates/*.dbc
ORACLE 為我們提供了幾個 dbc 模板:
Data Warehouse 資料倉儲
Transaction Processing 事務處理
General Purpose 一般用途
2) 另一種是根據模板檔案
該模板檔案位於oracle 解壓目錄下 database/response/ dbca.rsp 檔案, 當然我們也可以透過複製這個模板檔案來修改其中的內容來建立定製的資料庫 。
本文以第一種方法舉例。 注意在使用dbca 命令的時候各個同級別的引數的必要性,有些是必要的,有些是不必要的。具體可參考 dbca -help 。靜默模式使用 dbca 建立資料庫,在執行過程中不存在互動資訊,所有的資訊、錯誤和告警都會寫在日誌裡。在結果時螢幕會列印出日誌的位置。
建庫指令碼如下:
$ dbca -silent -createDatabase -templateName /u01/app/oracle/product/1 9 . 3 .0/db_1/assistants/dbca/templates/General_Purpose.dbc -responseFile NO_VALUE -gdbName prod -sid prod -createAsContainerDatabase TRUE -numberOfPDBs 2 -pdbName pdb -pdbAdminPassword oracle -sysPassword oracle -systemPassword oracle -redoLogFileSize 50 -storageType FS -datafileDestination '/u01/app/oracle/oradata/prod' -enableArchive true -archiveLogDest '/archivelog' -sampleSchema false -characterset ZHS16GBK -nationalCharacterSet AL16UTF16 -emConfiguration NONE -automaticMemoryManagement false -totalMemory 2048 -databaseType OLTP
[WARNING] [DBT-06208] The 'SYS' password entered does not conform to the Oracle recommended standards.
CAUSE:
a. Oracle recommends that the password entered should be at least 8 characters in length, contain at least 1 uppercase character, 1 lower case character and 1 digit [0-9].
b.The password entered is a keyword that Oracle does not recommend to be used as password
ACTION: Specify a strong password. If required refer Oracle documentation for guidelines.
[WARNING] [DBT-06208] The 'SYSTEM' password entered does not conform to the Oracle recommended standards.
CAUSE:
a. Oracle recommends that the password entered should be at least 8 characters in length, contain at least 1 uppercase character, 1 lower case character and 1 digit [0-9].
b.The password entered is a keyword that Oracle does not recommend to be used as password
ACTION: Specify a strong password. If required refer Oracle documentation for guidelines.
[WARNING] [DBT-06208] The 'PDBADMIN' password entered does not conform to the Oracle recommended standards.
CAUSE:
a. Oracle recommends that the password entered should be at least 8 characters in length, contain at least 1 uppercase character, 1 lower case character and 1 digit [0-9].
b.The password entered is a keyword that Oracle does not recommend to be used as password
ACTION: Specify a strong password. If required refer Oracle documentation for guidelines.
Prepare for db operation
8% complete
Copying database files
31% complete
Creating and starting Oracle instance
32% complete
36% complete
40% complete
43% complete
46% complete
Completing Database Creation
51% complete
53% complete
54% complete
Creating Pluggable Databases
58% complete
63% complete
77% complete
Executing Post Configuration Actions
100% complete
Database creation complete. For details check the logfiles at:
/u01/app/oracle/cfgtoollogs/dbca/prod.
Database Information:
Global Database Name:prod
System Identifier(SID):prod
Look at the log file "/u01/app/oracle/cfgtoollogs/dbca/prod/prod0.log" for further details.
引數解釋如下:
-silent: 靜默模式
-templateName: 指定資料庫建立模板位置
-responseFile : 是否使用響應檔案
-gdbName: global database name
-sid: 指定資料庫 SID ( system identifier )
- createAsContainerDatabase : 是否建立 CDB , true 為建立 CDB
-numberOfPDBs : 建立 PDB 的數量
-pdbName : PDB 名字,如果建立多個 PDB ,該名字為字首名
-pdbAdminPassword : PDB 管理員密碼
- sysPassword : sys 使用者密碼
-systemPassword : system 使用者密碼
-redoLogFileSize : 指定 redo 日誌大小
- storageType : 儲存型別: FS 為檔案系統, ASM 為 ASM 磁碟形式,如果使用 ASM 儲存,還需要指定 -diskGroupName , -recoveryGroupName
-datafileDestination : 資料檔案路徑
-enableArchive: 是否啟用歸檔
-archiveLogDest: 歸檔路徑
-sampleSchema : 是否建立用例模板
-characterset : 指定字符集
-nationalCharacterSet : 指定國家字符集
-emConfiguration : 是否建立 em
-automaticMemoryManagement : 是否啟動 AMM , true 代表啟動 AMM,false 代表啟動 ASMM
- totalMemory : 指定例項佔用記憶體大小, PGA 和 SGA 會自動分配
-databaseType : 可選 MULTIPURPOSE|DATA_WAREHOUSING|OLTP
---- end ----
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31529886/viewspace-2745586/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 【配置安裝】靜默安裝Oracle資料庫軟體12c&19cOracle資料庫
- 靜默安裝and手動建庫
- Oracle靜默安裝Oracle
- 【配置上線】Oracle靜默建庫 for 11gOracle
- 靜默安裝Oracle建庫時報Template General Purpose does not existOracle
- Windows 7平臺靜默安裝11.2.0.4軟體及靜默建庫Windows
- 【配置上線】靜默安裝資料庫Oracle 11gR2資料庫Oracle
- 靜默安裝Oracle11g資料庫Oracle資料庫
- 靜默安裝Oracle資料庫11gOracle資料庫
- oracle 19C 靜默安裝Oracle
- 靜默安裝oracle時報錯Oracle
- centos 7.4靜默安裝oracle 19.3CentOSOracle
- 【靜默】在RHEL 6.5上靜默安裝Oracle 18cOracle
- 靜默方式安裝、升級oracle(二): 建立資料庫Oracle資料庫
- 靜默方式安裝、升級oracle(一): 安裝oracle軟體Oracle
- Oracle Linux 7.1 靜默安裝Weblogic 12.2.1.3OracleLinuxWeb
- RedHat上靜默安裝Oracle11gRedhatOracle
- CentOS 7.2靜默安裝Oracle11gCentOSOracle
- redhat7.2靜默安裝Oracle11.2.0.4RedhatOracle
- CentOS 7.5靜默安裝Oracle 11gCentOSOracle
- Oracle Linux 7.1 靜默安裝Oracle 18c RACOracleLinux
- rac靜默安裝
- 靜默方式安裝oracle 11g 完整攻略Oracle
- oracle11g客戶端靜默安裝Oracle客戶端
- ogg for oracle 19c 非cdb安裝配置Oracle
- 【11g 單庫解除安裝、靜默安裝】實驗
- RedHat 7 靜默安裝Oracle11g的補充RedhatOracle
- Linux下利用指令碼靜默安裝Oracle11GLinux指令碼Oracle
- Linux下靜默安裝OraceLinux
- 靜默方式安裝、升級oracle(三): 升級資料庫軟體及資料庫Oracle資料庫
- oracle 19c dataguard silent install (oracle 19c dataguard 靜默安裝)Oracle
- Oracle 19C的下載和安裝部署(圖形安裝和靜默安裝)Oracle
- 阿里雲伺服器靜默安裝Oracle 11.2.0.4.0 -64bit阿里伺服器Oracle
- AnolisOS 7.9 靜默安裝Oacle 11.2.0.4
- 19c(19.3) 單機資料庫靜默安裝資料庫
- oracle19c安裝_cdbOracle
- oracle11g在linux7的靜默安裝指令碼OracleLinux指令碼
- 靜默方式安裝11gR2