Advertisement
Guest User

Untitled

a guest
Mar 19th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.94 KB | None | 0 0
  1. ####################################################################
  2. ## Copyright(c) Oracle Corporation 1998,2017. All rights reserved.##
  3. ## ##
  4. ## Specify values for the variables listed below to customize ##
  5. ## your installation. ##
  6. ## ##
  7. ## Each variable is associated with a comment. The comment ##
  8. ## can help to populate the variables with the appropriate ##
  9. ## values. ##
  10. ## ##
  11. ## IMPORTANT NOTE: This file contains plain text passwords and ##
  12. ## should be secured to have read permission only by oracle user ##
  13. ## or db administrator who owns this installation. ##
  14. ## ##
  15. ####################################################################
  16.  
  17.  
  18. #-------------------------------------------------------------------------------
  19. # Do not change the following system generated value.
  20. #-------------------------------------------------------------------------------
  21. oracle.install.responseFileVersion=/oracle/install/rspfmt_dbinstall_response_schema_v12.2.0
  22.  
  23. #-------------------------------------------------------------------------------
  24. # Specify the installation option.
  25. # It can be one of the following:
  26. # - INSTALL_DB_SWONLY
  27. # - INSTALL_DB_AND_CONFIG
  28. # - UPGRADE_DB
  29. #-------------------------------------------------------------------------------
  30. oracle.install.option=INSTALL_DB_SWONLY
  31.  
  32. #-------------------------------------------------------------------------------
  33. # Specify the Unix group to be set for the inventory directory.
  34. #-------------------------------------------------------------------------------
  35. UNIX_GROUP_NAME=oinstall
  36.  
  37. #-------------------------------------------------------------------------------
  38. # Specify the location which holds the inventory files.
  39. # This is an optional parameter if installing on
  40. # Windows based Operating System.
  41. #-------------------------------------------------------------------------------
  42. INVENTORY_LOCATION=/u01/app/oraInventory
  43. #-------------------------------------------------------------------------------
  44. # Specify the complete path of the Oracle Home.
  45. #-------------------------------------------------------------------------------
  46. ORACLE_HOME=/u01/app/oracle/product/12.2.0/dbhome_1
  47.  
  48. #-------------------------------------------------------------------------------
  49. # Specify the complete path of the Oracle Base.
  50. #-------------------------------------------------------------------------------
  51. ORACLE_BASE=/u01/app/oracle
  52.  
  53. #-------------------------------------------------------------------------------
  54. # Specify the installation edition of the component.
  55. #
  56. # The value should contain only one of these choices.
  57. # - EE : Enterprise Edition
  58. # - SE2 : Standard Edition 2
  59.  
  60.  
  61. #-------------------------------------------------------------------------------
  62.  
  63. oracle.install.db.InstallEdition=EE
  64. ###############################################################################
  65. # #
  66. # PRIVILEGED OPERATING SYSTEM GROUPS #
  67. # ------------------------------------------ #
  68. # Provide values for the OS groups to which SYSDBA and SYSOPER privileges #
  69. # needs to be granted. If the install is being performed as a member of the #
  70. # group "dba", then that will be used unless specified otherwise below. #
  71. # #
  72. # The value to be specified for OSDBA and OSOPER group is only for UNIX based #
  73. # Operating System. #
  74. # #
  75. ###############################################################################
  76.  
  77. #------------------------------------------------------------------------------
  78. # The OSDBA_GROUP is the OS group which is to be granted SYSDBA privileges.
  79. #-------------------------------------------------------------------------------
  80. oracle.install.db.OSDBA_GROUP=dba
  81.  
  82. #------------------------------------------------------------------------------
  83. # The OSOPER_GROUP is the OS group which is to be granted SYSOPER privileges.
  84. # The value to be specified for OSOPER group is optional.
  85. #------------------------------------------------------------------------------
  86. oracle.install.db.OSOPER_GROUP=dba
  87.  
  88. #------------------------------------------------------------------------------
  89. # The OSBACKUPDBA_GROUP is the OS group which is to be granted SYSBACKUP privileges.
  90. #------------------------------------------------------------------------------
  91. oracle.install.db.OSBACKUPDBA_GROUP=dba
  92.  
  93. #------------------------------------------------------------------------------
  94. # The OSDGDBA_GROUP is the OS group which is to be granted SYSDG privileges.
  95. #------------------------------------------------------------------------------
  96. oracle.install.db.OSDGDBA_GROUP=dba
  97.  
  98. #------------------------------------------------------------------------------
  99. # The OSKMDBA_GROUP is the OS group which is to be granted SYSKM privileges.
  100. #------------------------------------------------------------------------------
  101. oracle.install.db.OSKMDBA_GROUP=dba
  102.  
  103. #------------------------------------------------------------------------------
  104. # The OSRACDBA_GROUP is the OS group which is to be granted SYSRAC privileges.
  105. #------------------------------------------------------------------------------
  106. oracle.install.db.OSRACDBA_GROUP=dba
  107.  
  108. ###############################################################################
  109. # #
  110. # Grid Options #
  111. # #
  112. ###############################################################################
  113. #------------------------------------------------------------------------------
  114. # Specify the type of Real Application Cluster Database
  115. #
  116. # - ADMIN_MANAGED: Admin-Managed
  117. # - POLICY_MANAGED: Policy-Managed
  118. #
  119. # If left unspecified, default will be ADMIN_MANAGED
  120. #------------------------------------------------------------------------------
  121. oracle.install.db.rac.configurationType=
  122.  
  123. #------------------------------------------------------------------------------
  124. # Value is required only if RAC database type is ADMIN_MANAGED
  125. #
  126. # Specify the cluster node names selected during the installation.
  127. # Leaving it blank will result in install on local server only (Single Instance)
  128. #
  129. # Example : oracle.install.db.CLUSTER_NODES=node1,node2
  130. #------------------------------------------------------------------------------
  131. oracle.install.db.CLUSTER_NODES=rac1,rac2
  132.  
  133. #------------------------------------------------------------------------------
  134. # This variable is used to enable or disable RAC One Node install.
  135. #
  136. # - true : Value of RAC One Node service name is used.
  137. # - false : Value of RAC One Node service name is not used.
  138. #
  139. # If left blank, it will be assumed to be false.
  140. #------------------------------------------------------------------------------
  141. oracle.install.db.isRACOneInstall=
  142.  
  143. #------------------------------------------------------------------------------
  144. # Value is required only if oracle.install.db.isRACOneInstall is true.
  145. #
  146. # Specify the name for RAC One Node Service
  147. #------------------------------------------------------------------------------
  148. oracle.install.db.racOneServiceName=
  149.  
  150. #------------------------------------------------------------------------------
  151. # Value is required only if RAC database type is POLICY_MANAGED
  152. #
  153. # Specify a name for the new Server pool that will be configured
  154. # Example : oracle.install.db.rac.serverpoolName=pool1
  155. #------------------------------------------------------------------------------
  156. oracle.install.db.rac.serverpoolName=
  157.  
  158. #------------------------------------------------------------------------------
  159. # Value is required only if RAC database type is POLICY_MANAGED
  160. #
  161. # Specify a number as cardinality for the new Server pool that will be configured
  162. # Example : oracle.install.db.rac.serverpoolCardinality=2
  163. #------------------------------------------------------------------------------
  164. oracle.install.db.rac.serverpoolCardinality=
  165.  
  166. ###############################################################################
  167. # #
  168. # Database Configuration Options #
  169. # #
  170. ###############################################################################
  171.  
  172. #-------------------------------------------------------------------------------
  173. # Specify the type of database to create.
  174. # It can be one of the following:
  175. # - GENERAL_PURPOSE
  176. # - DATA_WAREHOUSE
  177. # GENERAL_PURPOSE: A starter database designed for general purpose use or transaction-heavy applications.
  178. # DATA_WAREHOUSE : A starter database optimized for data warehousing applications.
  179. #-------------------------------------------------------------------------------
  180. oracle.install.db.config.starterdb.type=
  181.  
  182. #-------------------------------------------------------------------------------
  183. # Specify the Starter Database Global Database Name.
  184. #-------------------------------------------------------------------------------
  185. oracle.install.db.config.starterdb.globalDBName=
  186.  
  187. #-------------------------------------------------------------------------------
  188. # Specify the Starter Database SID.
  189. #-------------------------------------------------------------------------------
  190. oracle.install.db.config.starterdb.SID=
  191.  
  192. #-------------------------------------------------------------------------------
  193. # Specify whether the database should be configured as a Container database.
  194. # The value can be either "true" or "false". If left blank it will be assumed
  195. # to be "false".
  196. #-------------------------------------------------------------------------------
  197. oracle.install.db.ConfigureAsContainerDB=
  198.  
  199. #-------------------------------------------------------------------------------
  200. # Specify the Pluggable Database name for the pluggable database in Container Database.
  201. #-------------------------------------------------------------------------------
  202. oracle.install.db.config.PDBName=
  203.  
  204. #-------------------------------------------------------------------------------
  205. # Specify the Starter Database character set.
  206. #
  207. # One of the following
  208. # AL32UTF8, WE8ISO8859P15, WE8MSWIN1252, EE8ISO8859P2,
  209. # EE8MSWIN1250, NE8ISO8859P10, NEE8ISO8859P4, BLT8MSWIN1257,
  210. # BLT8ISO8859P13, CL8ISO8859P5, CL8MSWIN1251, AR8ISO8859P6,
  211. # AR8MSWIN1256, EL8ISO8859P7, EL8MSWIN1253, IW8ISO8859P8,
  212. # IW8MSWIN1255, JA16EUC, JA16EUCTILDE, JA16SJIS, JA16SJISTILDE,
  213. # KO16MSWIN949, ZHS16GBK, TH8TISASCII, ZHT32EUC, ZHT16MSWIN950,
  214. # ZHT16HKSCS, WE8ISO8859P9, TR8MSWIN1254, VN8MSWIN1258
  215. #-------------------------------------------------------------------------------
  216. oracle.install.db.config.starterdb.characterSet=
  217.  
  218. #------------------------------------------------------------------------------
  219. # This variable should be set to true if Automatic Memory Management
  220. # in Database is desired.
  221. # If Automatic Memory Management is not desired, and memory allocation
  222. # is to be done manually, then set it to false.
  223. #------------------------------------------------------------------------------
  224. oracle.install.db.config.starterdb.memoryOption=
  225.  
  226. #-------------------------------------------------------------------------------
  227. # Specify the total memory allocation for the database. Value(in MB) should be
  228. # at least 256 MB, and should not exceed the total physical memory available
  229. # on the system.
  230. # Example: oracle.install.db.config.starterdb.memoryLimit=512
  231. #-------------------------------------------------------------------------------
  232. oracle.install.db.config.starterdb.memoryLimit=
  233.  
  234. #-------------------------------------------------------------------------------
  235. # This variable controls whether to load Example Schemas onto
  236. # the starter database or not.
  237. # The value can be either "true" or "false". If left blank it will be assumed
  238. # to be "false".
  239. #-------------------------------------------------------------------------------
  240. oracle.install.db.config.starterdb.installExampleSchemas=
  241.  
  242. ###############################################################################
  243. # #
  244. # Passwords can be supplied for the following four schemas in the #
  245. # starter database: #
  246. # SYS #
  247. # SYSTEM #
  248. # DBSNMP (used by Enterprise Manager) #
  249. # #
  250. # Same password can be used for all accounts (not recommended) #
  251. # or different passwords for each account can be provided (recommended) #
  252. # #
  253. ###############################################################################
  254.  
  255. #------------------------------------------------------------------------------
  256. # This variable holds the password that is to be used for all schemas in the
  257. # starter database.
  258. #-------------------------------------------------------------------------------
  259. oracle.install.db.config.starterdb.password.ALL=
  260.  
  261. #-------------------------------------------------------------------------------
  262. # Specify the SYS password for the starter database.
  263. #-------------------------------------------------------------------------------
  264. oracle.install.db.config.starterdb.password.SYS=
  265.  
  266. #-------------------------------------------------------------------------------
  267. # Specify the SYSTEM password for the starter database.
  268. #-------------------------------------------------------------------------------
  269. oracle.install.db.config.starterdb.password.SYSTEM=
  270.  
  271. #-------------------------------------------------------------------------------
  272. # Specify the DBSNMP password for the starter database.
  273. # Applicable only when oracle.install.db.config.starterdb.managementOption=CLOUD_CONTROL
  274. #-------------------------------------------------------------------------------
  275. oracle.install.db.config.starterdb.password.DBSNMP=
  276.  
  277. #-------------------------------------------------------------------------------
  278. # Specify the PDBADMIN password required for creation of Pluggable Database in the Container Database.
  279. #-------------------------------------------------------------------------------
  280. oracle.install.db.config.starterdb.password.PDBADMIN=
  281.  
  282. #-------------------------------------------------------------------------------
  283. # Specify the management option to use for managing the database.
  284. # Options are:
  285. # 1. CLOUD_CONTROL - If you want to manage your database with Enterprise Manager Cloud Control along with Database Express.
  286. # 2. DEFAULT -If you want to manage your database using the default Database Express option.
  287. #-------------------------------------------------------------------------------
  288. oracle.install.db.config.starterdb.managementOption=
  289.  
  290. #-------------------------------------------------------------------------------
  291. # Specify the OMS host to connect to Cloud Control.
  292. # Applicable only when oracle.install.db.config.starterdb.managementOption=CLOUD_CONTROL
  293. #-------------------------------------------------------------------------------
  294. oracle.install.db.config.starterdb.omsHost=
  295.  
  296. #-------------------------------------------------------------------------------
  297. # Specify the OMS port to connect to Cloud Control.
  298. # Applicable only when oracle.install.db.config.starterdb.managementOption=CLOUD_CONTROL
  299. #-------------------------------------------------------------------------------
  300. oracle.install.db.config.starterdb.omsPort=
  301.  
  302. #-------------------------------------------------------------------------------
  303. # Specify the EM Admin user name to use to connect to Cloud Control.
  304. # Applicable only when oracle.install.db.config.starterdb.managementOption=CLOUD_CONTROL
  305. #-------------------------------------------------------------------------------
  306. oracle.install.db.config.starterdb.emAdminUser=
  307.  
  308. #-------------------------------------------------------------------------------
  309. # Specify the EM Admin password to use to connect to Cloud Control.
  310. # Applicable only when oracle.install.db.config.starterdb.managementOption=CLOUD_CONTROL
  311. #-------------------------------------------------------------------------------
  312. oracle.install.db.config.starterdb.emAdminPassword=
  313.  
  314. ###############################################################################
  315. # #
  316. # SPECIFY RECOVERY OPTIONS #
  317. # ------------------------------------ #
  318. # Recovery options for the database can be mentioned using the entries below #
  319. # #
  320. ###############################################################################
  321.  
  322. #------------------------------------------------------------------------------
  323. # This variable is to be set to false if database recovery is not required. Else
  324. # this can be set to true.
  325. #-------------------------------------------------------------------------------
  326. oracle.install.db.config.starterdb.enableRecovery=
  327.  
  328. #-------------------------------------------------------------------------------
  329. # Specify the type of storage to use for the database.
  330. # It can be one of the following:
  331. # - FILE_SYSTEM_STORAGE
  332. # - ASM_STORAGE
  333. #-------------------------------------------------------------------------------
  334. oracle.install.db.config.starterdb.storageType=
  335.  
  336. #-------------------------------------------------------------------------------
  337. # Specify the database file location which is a directory for datafiles, control
  338. # files, redo logs.
  339. #
  340. # Applicable only when oracle.install.db.config.starterdb.storage=FILE_SYSTEM_STORAGE
  341. #-------------------------------------------------------------------------------
  342. oracle.install.db.config.starterdb.fileSystemStorage.dataLocation=
  343.  
  344. #-------------------------------------------------------------------------------
  345. # Specify the recovery location.
  346. #
  347. # Applicable only when oracle.install.db.config.starterdb.storage=FILE_SYSTEM_STORAGE
  348. #-------------------------------------------------------------------------------
  349. oracle.install.db.config.starterdb.fileSystemStorage.recoveryLocation=
  350.  
  351. #-------------------------------------------------------------------------------
  352. # Specify the existing ASM disk groups to be used for storage.
  353. #
  354. # Applicable only when oracle.install.db.config.starterdb.storageType=ASM_STORAGE
  355. #-------------------------------------------------------------------------------
  356. oracle.install.db.config.asm.diskGroup=
  357.  
  358. #-------------------------------------------------------------------------------
  359. # Specify the password for ASMSNMP user of the ASM instance.
  360. #
  361. # Applicable only when oracle.install.db.config.starterdb.storage=ASM_STORAGE
  362. #-------------------------------------------------------------------------------
  363. oracle.install.db.config.asm.ASMSNMPPassword=
  364.  
  365. #------------------------------------------------------------------------------
  366. # Specify the My Oracle Support Account Username.
  367. #
  368. # Example : MYORACLESUPPORT_USERNAME=abc@oracle.com
  369. #------------------------------------------------------------------------------
  370. MYORACLESUPPORT_USERNAME=
  371.  
  372. #------------------------------------------------------------------------------
  373. # Specify the My Oracle Support Account Username password.
  374. #
  375. # Example : MYORACLESUPPORT_PASSWORD=password
  376. #------------------------------------------------------------------------------
  377. MYORACLESUPPORT_PASSWORD=
  378.  
  379. #------------------------------------------------------------------------------
  380. # Specify whether to enable the user to set the password for
  381. # My Oracle Support credentials. The value can be either true or false.
  382. # If left blank it will be assumed to be false.
  383. #
  384. # Example : SECURITY_UPDATES_VIA_MYORACLESUPPORT=true
  385. #------------------------------------------------------------------------------
  386. SECURITY_UPDATES_VIA_MYORACLESUPPORT=
  387.  
  388. #------------------------------------------------------------------------------
  389. # Specify whether user doesn't want to configure Security Updates.
  390. # The value for this variable should be true if you don't want to configure
  391. # Security Updates, false otherwise.
  392. #
  393. # The value can be either true or false. If left blank it will be assumed
  394. # to be true.
  395. #
  396. # Example : DECLINE_SECURITY_UPDATES=false
  397. #------------------------------------------------------------------------------
  398. DECLINE_SECURITY_UPDATES=true
  399.  
  400. #------------------------------------------------------------------------------
  401. # Specify the Proxy server name. Length should be greater than zero.
  402. #
  403. # Example : PROXY_HOST=proxy.domain.com
  404. #------------------------------------------------------------------------------
  405. PROXY_HOST=
  406.  
  407. #------------------------------------------------------------------------------
  408. # Specify the proxy port number. Should be Numeric and at least 2 chars.
  409. #
  410. # Example : PROXY_PORT=25
  411. #------------------------------------------------------------------------------
  412. PROXY_PORT=
  413.  
  414. #------------------------------------------------------------------------------
  415. # Specify the proxy user name. Leave PROXY_USER and PROXY_PWD
  416. # blank if your proxy server requires no authentication.
  417. #
  418. # Example : PROXY_USER=username
  419. #------------------------------------------------------------------------------
  420. PROXY_USER=
  421.  
  422. #------------------------------------------------------------------------------
  423. # Specify the proxy password. Leave PROXY_USER and PROXY_PWD
  424. # blank if your proxy server requires no authentication.
  425. #
  426. # Example : PROXY_PWD=password
  427. #------------------------------------------------------------------------------
  428. PROXY_PWD=
  429.  
  430. #------------------------------------------------------------------------------
  431. # Specify the Oracle Support Hub URL.
  432. #
  433. # Example : COLLECTOR_SUPPORTHUB_URL=https://orasupporthub.company.com:8080/
  434. #------------------------------------------------------------------------------
  435. COLLECTOR_SUPPORTHUB_URL=
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement