powered by simpleCommunicator - 2.0.61     © 2026 Programmizd 02
Целевая тема:
Создать новую тему:
Автор:
Закрыть
Цитировать
Форумы / Oracle [игнор отключен] [закрыт для гостей] / Установка Oracle Database 12c Release 1 на Oracle Linux 7.2
3 сообщений из 3, страница 1 из 1
Установка Oracle Database 12c Release 1 на Oracle Linux 7.2
    #39322345
MONaH-Rasta
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Гость
Приветствую всех местных и гостей!
Прошу не пинать сильно, это моя первая тема тут.

OS: Oracle Linux 7.2 (64 bit)
DB: Oracle Database 12c Release 1 (12.1.0.2.0) - Enterprise Edition

Оба дистрибутива скачаны с официального сайта Oracle.
PreInstallation tasks
Код: powershell
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
54.
55.
56.
57.
58.
59.
60.
61.
62.
63.
64.
65.
yum update -y
yum install open-vm-tools nano mc unzip wget oracle-rdbms-server-12cR1-preinstall -y

sed -i s/SELINUX=enforcing/SELINUX=disabled/ /etc/selinux/config
systemctl stop firewalld.service
systemctl disable firewalld.service
reboot

#IP\tHOSTNAME
echo -e '192.168.1.202\tOEL7-1' >> /etc/hosts

#Чтобы при следующей перезагрузке настройки для /dev/shm сохранились, нужно добавить запись
echo -e 'shmfs\t\t\t\t\t\t/dev/shm\ttmpfs\tsize=4g\t\t\t\t0' >> /etc/fstab

#Создание паролей для пользователей
passwd oracle

#Нужно сверить с параметрами указанными ниже. Если значение параметра меньше чем указано – его нужно изменить на указанное значение. Если значение параметра больше чем указано – его не нужно менять. Не было никаких параметров – просто добавил их.
sed -i /'# End of file'/d /etc/security/limits.conf
echo -e 'oracle soft nproc 2047\noracle hard nproc 16384\noracle soft nofile 1024\noracle hard nofile 65536\n# End of file' >> /etc/security/limits.conf

#В файл /etc/pam.d/login нужно добавить строку (если его нет – создать)
echo -e 'session    required     pam_limits.so' >> /etc/pam.d/login

echo -e '#!/bin/bash/\nif [ $USER = "oracle" ]; then\nif [ $SHELL = "/bin/ksh" ]; then\nulimit -p 16384\nulimit -n 65536\nelse\nulimit -u 16384 -n 65536\nfi\numask 022\nfi' >> /etc/profile.d/custom.sh
#Cохранить файл и выполнить
chmod +x /etc/profile.d/custom.sh

#Создание папок 12.1.0.2.0
# Oracle Inventory
ln -s /data /u01
mkdir -p /u01/app/oraInventory
chown -R oracle:oinstall /u01/app/oraInventory
chown -R oracle:oinstall /data/app/oraInventory
chmod -R 775 /u01/app/oraInventory
chmod -R 775 /data/app/oraInventory

# Oracle Base Directory
mkdir -p /u01/app/oracle
mkdir /u01/app/oracle/cfgtoollogs
chown -R oracle:oinstall /u01/app/oracle
chown -R oracle:oinstall /data/app/oracle
chmod -R 775 /u01/app/oracle
chmod -R 775 /data/app/oracle

# Oracle RDBMS Home
mkdir -p /u01/app/oracle/product/12.1.0.2.0/db_1
chown -R oracle:oinstall /u01/app/oracle/product/12.1.0.2.0/db_1
chown -R oracle:oinstall /data/app/oracle/product/12.1.0.2.0/db_1
chmod -R 775 /u01/app/oracle/product/12.1.0.2.0/db_1
chmod -R 775 /data/app/oracle/product/12.1.0.2.0/db_1

#copy folder database to /tmp
chmod -R 775 /tmp/database
chown -R oracle:oinstall /tmp/database

echo -e 'ORACLE_HOME=/u01/app/oracle/product/12.1.0.2.0/db_1\nORACLE_SID=ORA\nPATH=$ORACLE_HOME/bin:$PATH\nexport ORACLE_HOME\nexport ORACLE_SID\nexport PATH' >> /home/oracle/.bash_profile

xhost +
su - oracle
cd /tmp/database
#export DISPLAY=:0.0
nano /tmp/database/db_install.rsp
#import
./runInstaller -silent -showProgress -responseFile /tmp/database/db_install.rsp

db_install.rsp
Код: plsql
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
oracle.install.responseFileVersion=/oracle/install/rspfmt_dbinstall_response_schema_v12.1.0
oracle.install.option=INSTALL_DB_SWONLY
ORACLE_HOSTNAME=OEL7-1
UNIX_GROUP_NAME=oinstall
INVENTORY_LOCATION=/u01/app/oraInventory
SELECTED_LANGUAGES=en,ru,uk
ORACLE_HOME=/u01/app/oracle/product/12.1.0.2.0/db_1
ORACLE_BASE=/u01/app/oracle
oracle.install.db.InstallEdition=EE
oracle.install.db.DBA_GROUP=dba
oracle.install.db.OPER_GROUP=dba
oracle.install.db.BACKUPDBA_GROUP=dba
oracle.install.db.DGDBA_GROUP=dba
oracle.install.db.KMDBA_GROUP=dba


После завершения работы установщика папка назначения пустая. Ошибок не нахожу. Лог ниже
installActions2016-10-06_11-02-29PM.log
Код: powershell
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
54.
55.
56.
57.
58.
59.
60.
61.
62.
63.
64.
65.
66.
67.
68.
69.
70.
71.
72.
73.
74.
75.
76.
77.
78.
79.
80.
81.
82.
83.
84.
85.
86.
87.
88.
89.
90.
91.
92.
93.
94.
95.
96.
97.
98.
99.
100.
101.
102.
103.
104.
105.
106.
107.
108.
109.
110.
111.
112.
113.
114.
115.
116.
117.
118.
119.
120.
121.
122.
123.
124.
125.
126.
127.
128.
129.
130.
131.
132.
133.
134.
135.
136.
137.
138.
139.
140.
141.
142.
143.
144.
145.
146.
147.
148.
149.
150.
151.
152.
153.
154.
155.
156.
157.
158.
159.
160.
161.
162.
163.
164.
165.
166.
167.
168.
169.
170.
171.
172.
173.
174.
175.
176.
177.
178.
179.
180.
181.
182.
183.
184.
185.
186.
187.
188.
189.
190.
191.
192.
193.
194.
195.
196.
197.
198.
199.
200.
201.
202.
203.
204.
205.
206.
207.
208.
209.
210.
211.
212.
213.
214.
215.
216.
217.
218.
219.
220.
221.
222.
223.
224.
225.
226.
227.
228.
229.
230.
231.
232.
233.
234.
235.
236.
237.
238.
239.
240.
241.
242.
243.
244.
245.
246.
247.
248.
249.
250.
251.
252.
253.
254.
255.
256.
257.
258.
259.
260.
261.
262.
263.
264.
265.
266.
267.
268.
269.
270.
271.
272.
273.
274.
275.
276.
277.
278.
279.
280.
281.
282.
283.
284.
285.
286.
287.
288.
289.
290.
291.
292.
293.
294.
295.
296.
297.
298.
299.
300.
301.
302.
303.
304.
305.
306.
307.
308.
309.
310.
311.
312.
313.
314.
315.
316.
317.
318.
319.
320.
321.
322.
323.
324.
325.
326.
327.
328.
329.
330.
331.
332.
333.
334.
335.
336.
337.
338.
339.
340.
341.
342.
343.
344.
345.
346.
347.
348.
349.
350.
351.
352.
353.
354.
355.
356.
357.
358.
359.
360.
361.
362.
363.
364.
365.
366.
367.
368.
369.
370.
371.
372.
373.
374.
375.
376.
377.
378.
379.
380.
381.
382.
383.
384.
385.
386.
387.
388.
389.
390.
391.
392.
393.
394.
395.
396.
397.
398.
399.
400.
401.
402.
403.
404.
405.
406.
407.
408.
409.
410.
411.
412.
413.
414.
415.
416.
417.
418.
419.
420.
421.
422.
423.
424.
425.
426.
Using paramFile: /tmp/database/install/oraparam.ini


Checking Temp space: must be greater than 500 MB.   Actual 43847 MB    Passed
Checking swap space: must be greater than 150 MB.   Actual 2047 MB    Passed

The commandline for unzip:
/tmp/database/install/unzip -qqqo ../stage/Components/oracle.jdk/1.6.0.75.0/1/DataFiles/\*.jar -d /tmp/OraInstall2016-10-06_11-02-29PM 
Using the umask value '022' available from oraparam.ini

Execvp of the child jre : the cmdline is /tmp/OraInstall2016-10-06_11-02-29PM/jdk/jre/bin/java, and the argv is 
/tmp/OraInstall2016-10-06_11-02-29PM/jdk/jre/bin/java
-Doracle.installer.library_loc=/tmp/OraInstall2016-10-06_11-02-29PM/oui/lib/linux64
-Doracle.installer.oui_loc=/tmp/OraInstall2016-10-06_11-02-29PM/oui
-Doracle.installer.bootstrap=TRUE
-Doracle.installer.startup_location=/tmp/database/install
-Doracle.installer.jre_loc=/tmp/OraInstall2016-10-06_11-02-29PM/jdk/jre
-Doracle.installer.nlsEnabled="TRUE"
-Doracle.installer.prereqConfigLoc= 
-Doracle.installer.unixVersion=3.8.13-118.13.2.el7uek.x86_64
-Doracle.install.setup.workDir=/tmp/database
-DCVU_OS_SETTINGS=SHELL_NOFILE_SOFT_LIMIT:65536,SHELL_UMASK:0022
-Xms150m
-Xmx256m
-XX:MaxPermSize=128M
-cp
/tmp/OraInstall2016-10-06_11-02-29PM::/tmp/OraInstall2016-10-06_11-02-29PM/ext/jlib/installcommons_1.0.0b.jar:/tmp/OraInstall2016-10-06_11-02-29PM/ext/jlib/OraPrereq.jar:/tmp/OraInstall2016-10-06_11-02-29PM/ext/jlib/adf-share-ca.jar:/tmp/OraInstall2016-10-06_11-02-29PM/ext/jlib/javax.security.jacc_1.0.0.0_1-1.jar:/tmp/OraInstall2016-10-06_11-02-29PM/ext/jlib/orai18n-mapping.jar:/tmp/OraInstall2016-10-06_11-02-29PM/ext/jlib/OraPrereqChecks.jar:/tmp/OraInstall2016-10-06_11-02-29PM/ext/jlib/orai18n-utility.jar:/tmp/OraInstall2016-10-06_11-02-29PM/ext/jlib/jsch.jar:/tmp/OraInstall2016-10-06_11-02-29PM/ext/jlib/cvu.jar:/tmp/OraInstall2016-10-06_11-02-29PM/ext/jlib/entityManager_proxy.jar:/tmp/OraInstall2016-10-06_11-02-29PM/ext/jlib/remoteinterfaces.jar:/tmp/OraInstall2016-10-06_11-02-29PM/ext/jlib/instdb.jar:/tmp/OraInstall2016-10-06_11-02-29PM/ext/jlib/ssh.jar:/tmp/OraInstall2016-10-06_11-02-29PM/ext/jlib/jmxspi.jar:/tmp/OraInstall2016-10-06_11-02-29PM/ext/jlib/wsclient_extended.jar:/tmp/OraInstall2016-10-06_11-02-29PM/ext/jlib/prov_fixup.jar:/tmp/OraInstall2016-10-06_11-02-29PM/ext/jlib/instcommon.jar:/tmp/OraInstall2016-10-06_11-02-29PM/ext/jlib/emca.jar:/tmp/OraInstall2016-10-06_11-02-29PM/ext/jlib/emCoreConsole.jar:/tmp/OraInstall2016-10-06_11-02-29PM/ext/jlib/ojdbc6.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/OraInstaller.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/oneclick.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/xmlparserv2.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/share.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/OraInstallerNet.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/emCfg.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/emocmutl.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/OraPrereq.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/jsch.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/ssh.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/remoteinterfaces.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/http_client.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/OraSuiteInstaller.jar:../stage/Components/oracle.swd.opatch/12.1.0.2.0/1/DataFiles/jlib/opatch.jar:../stage/Components/oracle.swd.opatch/12.1.0.2.0/1/DataFiles/jlib/opatchactions.jar:../stage/Components/oracle.swd.opatch/12.1.0.2.0/1/DataFiles/jlib/opatchprereq.jar:../stage/Components/oracle.swd.opatch/12.1.0.2.0/1/DataFiles/jlib/opatchutil.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/OraCheckPoint.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/InstImages.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/InstHelp.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/InstHelp_de.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/InstHelp_es.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/InstHelp_fr.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/InstHelp_it.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/InstHelp_ja.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/InstHelp_ko.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/InstHelp_pt_BR.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/InstHelp_zh_CN.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/InstHelp_zh_TW.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/oracle_ice.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/help-share.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/ohj.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/ewt3.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/ewt3-swingaccess.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/swingaccess.jar::/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/jewt4.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/orai18n-collation.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/orai18n-mapping.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/ojmisc.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/xml.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/srvm.jar:/tmp/OraInstall2016-10-06_11-02-29PM/oui/jlib/srvmasm.jar
oracle.install.ivw.db.driver.DBInstaller
-scratchPath
/tmp/OraInstall2016-10-06_11-02-29PM
-sourceLoc
/tmp/database/install/../stage/products.xml
-sourceType
network
-timestamp
2016-10-06_11-02-29PM
-silent
-showProgress
-responseFile
/tmp/database/db_install.rsp
INFO: Loading data from: jar:file:/tmp/OraInstall2016-10-06_11-02-29PM/ext/jlib/installcommons_1.0.0b.jar!/oracle/install/driver/oui/resource/ConfigCommandMappings.xml
INFO: Loading beanstore from jar:file:/tmp/OraInstall2016-10-06_11-02-29PM/ext/jlib/installcommons_1.0.0b.jar!/oracle/install/driver/oui/resource/ConfigCommandMappings.xml
INFO: Restoring class oracle.install.driver.oui.ConfigCmdMappings from jar:file:/tmp/OraInstall2016-10-06_11-02-29PM/ext/jlib/installcommons_1.0.0b.jar!/oracle/install/driver/oui/resource/ConfigCommandMappings.xml
INFO: Loading beans from Xml Bean Store. [BeanStoreName:config-data]
INFO: Setting value for the property:id in the bean:configcmd
INFO: Setting value for the property:platformcmdmap in the bean:configcmd
INFO: Setting value for the property:id in the bean:configcmd
INFO: Setting value for the property:platformcmdmap in the bean:configcmd
INFO: Setting value for the property:id in the bean:configcmd
INFO: Setting value for the property:platformcmdmap in the bean:configcmd
INFO: Setting value for the property:id in the bean:configcmd
INFO: Setting value for the property:platformcmdmap in the bean:configcmd
INFO: Setting value for the property:id in the bean:configcmd
INFO: Setting value for the property:platformcmdmap in the bean:configcmd
INFO: Setting value for the property:id in the bean:configcmd
INFO: Setting value for the property:platformcmdmap in the bean:configcmd
INFO: Setting value for the property:id in the bean:configcmd
INFO: Setting value for the property:platformcmdmap in the bean:configcmd
INFO: Setting value for the property:id in the bean:configcmd
INFO: Setting value for the property:platformcmdmap in the bean:configcmd
INFO: Setting value for the property:id in the bean:configcmd
INFO: Setting value for the property:platformcmdmap in the bean:configcmd
INFO: Setting value for the property:id in the bean:configcmd
INFO: Setting value for the property:platformcmdmap in the bean:configcmd
INFO: Setting value for the property:id in the bean:configcmd
INFO: Setting value for the property:platformcmdmap in the bean:configcmd
INFO: Setting value for the property:id in the bean:configcmd
INFO: Setting value for the property:platformcmdmap in the bean:configcmd
INFO: Setting value for the property:id in the bean:configcmd
INFO: Setting value for the property:platformcmdmap in the bean:configcmd
INFO: Setting value for the property:configcmds in the bean:configcmdmappings
INFO: Inventory exists: false
INFO: Gathering system details...
INFO: Registering setup bean
INFO: Validating Response File /tmp/database/db_install.rsp
WARNING: Unable to find the namespace URI. Reason: Start of root element expected.
INFO: Createing properties map - in ExtendedPropertyFileFormat.loadPropertiesMap()
INFO: Setting Response file data to the Installer
WARNING: Unable to find the namespace URI. Reason: Start of root element expected.
INFO: Building Flow
INFO: Opening bean stores from which the beans can be loaded
INFO: Changing the format to extended property file format to merge the flowDataDefaults with the flowDataSource
INFO: Loading beanstore from file:/tmp/database/db_install.rsp
INFO: Translating external format into raw format 
INFO: Loaded BeanStore using the flow data source
INFO: No global condition definition found.
INFO: Building the flow graph
INFO: Loaded state AutoUpdatesOptionsUI
INFO: Loaded state UpdatesListUI
INFO: Loaded state finishupdates
INFO: Building the flow graph
INFO: Loaded state prepInstall
INFO: Loaded state decideOCMInstall
INFO: Loaded state getOCMDetails
INFO: Loaded state autoupdatesDecider
INFO: Loaded state preAutoUpdates
INFO: Loaded state AutoUpdatesOptionsUI
INFO: Loaded state UpdatesListUI
INFO: Loaded state supportedOSCheck
INFO: Loaded state installOptions
INFO: Loaded state getSystemClass
INFO: Loaded state DBTypeSelectionPage
INFO: Loaded state RACDBTypeSelectionPage
INFO: Loaded state nodeSelectionPage
INFO: Loaded state upgradeValidation
INFO: Loaded state installType
INFO: Loaded state quickInstallPage
INFO: Loaded state productLanguage
INFO: Loaded state inventoryPage
INFO: Loaded state getOracleHome
INFO: Loaded state dbEdition
INFO: Loaded state configurationType
INFO: Loaded state dbIdentifier
INFO: Loaded state configurationOption
INFO: Loaded state managementOption
INFO: Loaded state storageOption
INFO: Loaded state recoveryOption
INFO: Loaded state selectASMDiskGroups
INFO: Loaded state schemaPasswordDialog
INFO: Loaded state getPrivilegedOSGroups
INFO: Loaded state prereqExecutionDecider
INFO: Loaded state performChecks
INFO: Loaded state showSummary
INFO: Loaded state setup
INFO: Loaded state finish
INFO: Linking states 
INFO: State[AutoUpdatesOptionsUI]: route=NO_AUTO_UPDATES; to=supportedOSCheck
INFO: State[AutoUpdatesOptionsUI]: route=success; to=UpdatesListUI
INFO: State[DBTypeSelectionPage]: route=rac_dbcreate; to=RACDBTypeSelectionPage
INFO: State[DBTypeSelectionPage]: route=rac_no_dbcreate; to=nodeSelectionPage
INFO: State[DBTypeSelectionPage]: route=si_dbcreate; to=installType
INFO: State[DBTypeSelectionPage]: route=si_no_dbcreate; to=productLanguage
INFO: State[RACDBTypeSelectionPage]: route=admin; to=nodeSelectionPage
INFO: State[RACDBTypeSelectionPage]: route=policy; to=nodeSelectionPage
INFO: State[UpdatesListUI]: route=success; to=supportedOSCheck
INFO: State[autoupdatesDecider]: route=AUTO_UPDATES_DISABLE; to=supportedOSCheck
INFO: State[autoupdatesDecider]: route=AUTO_UPDATES_STATE_SKIP; to=supportedOSCheck
INFO: State[autoupdatesDecider]: route=success; to=preAutoUpdates
INFO: Condition of state[autoupdatesDecider]: route=matched; to=supportedOSCheck
INFO: State[configurationOption]: route=success; to=storageOption
INFO: State[configurationType]: route=success; to=dbIdentifier
INFO: State[dbEdition]: route=oraclehome_location; to=getOracleHome
INFO: State[dbIdentifier]: route=success; to=configurationOption
INFO: State[decideOCMInstall]: route=ignoreOCM; to=autoupdatesDecider
INFO: State[decideOCMInstall]: route=requireOCM; to=getOCMDetails
INFO: State[getOCMDetails]: route=success; to=autoupdatesDecider
INFO: State[getOracleHome]: route=advanced_yes_createDB_yes; to=configurationType
INFO: State[getOracleHome]: route=advanced_yes_inventory_no; to=inventoryPage
INFO: State[getOracleHome]: route=advanced_yes_softwareDB_yes; to=getPrivilegedOSGroups
INFO: State[getOracleHome]: route=advanced_yes_upgrade_yes; to=getPrivilegedOSGroups
INFO: State[getPrivilegedOSGroups]: route=success; to=prereqExecutionDecider
INFO: State[getSystemClass]: route=desktop_class_yes; to=quickInstallPage
INFO: State[getSystemClass]: route=server_class_yes; to=DBTypeSelectionPage
INFO: State[installOptions]: route=advanced_yes_softwareDB_yes; to=DBTypeSelectionPage
INFO: State[installOptions]: route=migrate_yes_clusterware_no; to=upgradeValidation
INFO: State[installOptions]: route=migrate_yes_clusterware_yes; to=DBTypeSelectionPage
INFO: State[installOptions]: route=system_class; to=getSystemClass
INFO: State[installType]: route=advanced_yes; to=productLanguage
INFO: State[installType]: route=basic_yes; to=quickInstallPage
INFO: State[inventoryPage]: route=advanced_yes_createDB_yes; to=configurationType
INFO: State[inventoryPage]: route=advanced_yes_softwareDB_yes; to=getPrivilegedOSGroups
INFO: State[inventoryPage]: route=basic_yes; to=prereqExecutionDecider
INFO: Condition of state[inventoryPage]: route=advanced_yes_createDB_yes; to=configurationType
INFO: Condition of state[inventoryPage]: route=advanced_yes_softwareDB_yes; to=getPrivilegedOSGroups
INFO: Condition of state[inventoryPage]: route=basic_yes; to=prereqExecutionDecider
INFO: State[managementOption]: route=success; to=recoveryOption
INFO: State[nodeSelectionPage]: route=create_and_configureDB; to=installType
INFO: State[nodeSelectionPage]: route=software_onlyDB; to=productLanguage
INFO: State[nodeSelectionPage]: route=upgradeDB; to=upgradeValidation
INFO: State[performChecks]: route=success; to=showSummary
INFO: State[preAutoUpdates]: route=success; to=AutoUpdatesOptionsUI
INFO: State[prepInstall]: route=DOWNLOAD_UPDATES_ONLY; to=AutoUpdatesOptionsUI
INFO: State[prepInstall]: route=success; to=decideOCMInstall
INFO: State[prereqExecutionDecider]: route=executeprereqs; to=performChecks
INFO: State[prereqExecutionDecider]: route=ignoreprereqs; to=showSummary
INFO: State[productLanguage]: route=productlanguage_yes; to=dbEdition
INFO: State[quickInstallPage]: route=basic_yes_inventory_no; to=inventoryPage
INFO: State[quickInstallPage]: route=basic_yes_inventory_yes; to=prereqExecutionDecider
INFO: State[recoveryOption]: route=asm_chosen_asm_not_present; to=schemaPasswordDialog
INFO: State[recoveryOption]: route=asm_chosen_asm_present; to=selectASMDiskGroups
INFO: State[recoveryOption]: route=asm_not_chosen; to=schemaPasswordDialog
INFO: State[schemaPasswordDialog]: route=success; to=getPrivilegedOSGroups
INFO: State[selectASMDiskGroups]: route=success; to=schemaPasswordDialog
INFO: State[setup]: route=success; to=finish
INFO: State[showSummary]: route=success; to=setup
INFO: State[storageOption]: route=success; to=managementOption
INFO: State[supportedOSCheck]: route=success; to=installOptions
INFO: State[upgradeValidation]: route=success; to=productLanguage
INFO: State[AutoUpdatesOptionsUI]: route=NO_AUTO_UPDATES; to=finishupdates
INFO: State[AutoUpdatesOptionsUI]: route=success; to=UpdatesListUI
INFO: State[UpdatesListUI]: route=DOWNLOAD_UPDATES_FINISHED; to=finishupdates
INFO: Successfully built the flow
INFO: loading the beans from bean stores
INFO: Loading flow data beans
INFO: Loading beans from Properties Bean Store. [BeanStoreName:beanstore]
INFO: Setting value for the property:ORACLE_HOME in the bean:DBInstallSettings
INFO: Setting value for the property:DBInstallSettings in the bean:DBSetupBean
INFO: Setting value for the property:CentralInventorySettings in the bean:DBSetupBean
INFO: Setting value for the property:oracle_install_autoupdates_myOracleSupportCredentials in the bean:AutoUpdatesInstallSettings
INFO: Setting value for the property:oracle_install_autoupdates_httpProxySettings in the bean:AutoUpdatesInstallSettings
INFO: Setting value for the property:AutoUpdatesInstallSettings in the bean:DBSetupBean
INFO: Setting value for the property:OCMSettings in the bean:DBSetupBean
INFO: Setting value for the property:WindowsSecureOptionSettings in the bean:DBSetupBean
INFO: Setting value for the property:RootConfigurationSettings in the bean:DBSetupBean
INFO: Loading beans from Xml Bean Store. [BeanStoreName:beanstore]
INFO: Setting value for the property:oracle_install_OSDBA in the bean:DBInstallSettings
INFO: Setting value for the property:oracle_install_OSOPER in the bean:DBInstallSettings
INFO: Setting value for the property:oracle_install_OSBKP in the bean:DBInstallSettings
INFO: Setting value for the property:oracle_install_OSDGD in the bean:DBInstallSettings
INFO: Setting value for the property:oracle_install_OSKMT in the bean:DBInstallSettings
INFO: Setting value for the property:oracle_install_db_StorageType in the bean:DBInstallSettings
INFO: Setting value for the property:oracle_install_db_InstallOption in the bean:DBInstallSettings
INFO: Setting value for the property:oracle_install_db_UseFileSystemForRecovery in the bean:DBInstallSettings
INFO: Setting value for the property:oracle_install_db_UseSamePassword in the bean:DBInstallSettings
INFO: Setting value for the property:oracle_install_db_ConfigTabSelected in the bean:DBInstallSettings
INFO: Setting value for the property:oracle_install_db_CharSetOption in the bean:DBInstallSettings
INFO: Setting value for the property:oracle_install_db_InstallOptionSelected in the bean:DBInstallSettings
INFO: Setting value for the property:oracle_install_db_managementOption in the bean:DBInstallSettings
INFO: Setting value for the property:oracle_install_db_SuperAdminPasswords in the bean:DBInstallSettings
INFO: Setting value for the property:oracle_install_db_InstallEdition in the bean:DBInstallSettings
INFO: Setting value for the property:ORACLE_HOME in the bean:DBInstallSettings
INFO: Setting value for the property:ORACLE_BASE in the bean:DBInstallSettings
INFO: Setting value for the property:DBInstallSettings in the bean:DBSetupBean
INFO: Setting value for the property:INVENTORY_LOCATION in the bean:CentralInventorySettings
INFO: Setting value for the property:UNIX_GROUP_NAME in the bean:CentralInventorySettings
INFO: Setting value for the property:CentralInventorySettings in the bean:DBSetupBean
INFO: Setting value for the property:oracle_install_autoupdates_myOracleSupportCredentials in the bean:AutoUpdatesInstallSettings
INFO: Setting value for the property:oracle_install_autoupdates_httpProxySettings in the bean:AutoUpdatesInstallSettings
INFO: Setting value for the property:AutoUpdatesInstallSettings in the bean:DBSetupBean
INFO: Setting value for the property:OCMSettings in the bean:DBSetupBean
INFO: Setting value for the property:SELECTED_LANGUAGES in the bean:DBSetupBean
INFO: Setting value for the property:WindowsSecureOptionSettings in the bean:DBSetupBean
INFO: Setting value for the property:ORACLE_HOSTNAME in the bean:DBSetupBean
INFO: Set value for bean DBSetupBean
INFO: Loading beans from Properties Bean Store. [BeanStoreName:beanstore]
INFO: Setting value for the property:ORACLE_HOME in the bean:DBInstallSettings
INFO: Loading beans from Xml Bean Store. [BeanStoreName:beanstore]
INFO: Loading beans from Properties Bean Store. [BeanStoreName:beanstore]
INFO: Setting value for the property:oracle_install_autoupdates_myOracleSupportCredentials in the bean:AutoUpdatesInstallSettings
INFO: Setting value for the property:oracle_install_autoupdates_httpProxySettings in the bean:AutoUpdatesInstallSettings
INFO: Loading beans from Xml Bean Store. [BeanStoreName:beanstore]
INFO: Loading beans from Properties Bean Store. [BeanStoreName:beanstore]
INFO: Loading beans from Xml Bean Store. [BeanStoreName:beanstore]
INFO: Loading beans from Properties Bean Store. [BeanStoreName:beanstore]
INFO: Loading beans from Xml Bean Store. [BeanStoreName:beanstore]
INFO: Closing bean stores from which the beans can be loaded
INFO: Registering the flow views
INFO: Adding View[type: oracle.install.commons.base.interview.common.view.PrereqGUI viewId: null uiType: null]
INFO: Adding View[type: oracle.install.commons.base.interview.common.view.SummaryGUI viewId: null uiType: null]
INFO: Adding View[type: oracle.install.commons.base.interview.common.view.SetupGUI viewId: null uiType: null]
INFO: Adding View[type: oracle.install.ivw.common.view.InventoryUI viewId: null uiType: null]
INFO: Adding View[type: oracle.install.ivw.common.view.ProductLanguageGUI viewId: ProductLanguageUI uiType: null]
INFO: Adding View[type: oracle.install.ivw.common.view.OCMDetailsGUI viewId: OCMDetailsUI uiType: null]
INFO: Adding View[type: oracle.install.ivw.db.view.ConfigurationTypeUI viewId: null uiType: null]
INFO: Adding View[type: oracle.install.ivw.db.view.DBIdentifierUI viewId: null uiType: null]
INFO: Adding View[type: oracle.install.ivw.db.view.ConfigurationOptionsUI viewId: null uiType: null]
INFO: Adding View[type: oracle.install.ivw.db.view.ManagementOptionsUI viewId: null uiType: null]
INFO: Adding View[type: oracle.install.ivw.db.view.StorageOptionsUI viewId: null uiType: null]
INFO: Adding View[type: oracle.install.ivw.db.view.RecoveryBackupUI viewId: null uiType: null]
INFO: Adding View[type: oracle.install.ivw.db.view.ASMDiskGroupSelectionGUI viewId: ASMDiskGroupSelectionUI uiType: null]
INFO: Adding View[type: oracle.install.ivw.db.view.SchemaPasswordUI viewId: null uiType: null]
INFO: Adding View[type: oracle.install.ivw.db.view.QuickInstallUI viewId: null uiType: null]
INFO: Adding View[type: oracle.install.ivw.db.view.InstallOptionsUI viewId: null uiType: null]
INFO: Adding View[type: oracle.install.ivw.db.view.SystemClassUI viewId: SystemClassUI uiType: null]
INFO: Adding View[type: oracle.install.ivw.db.view.InstallLocationUI viewId: null uiType: null]
INFO: Adding View[type: oracle.install.ivw.db.view.DBEditionGUI viewId: null uiType: null]
INFO: Adding View[type: oracle.install.ivw.db.view.NodeSelectionUI viewId: null uiType: null]
INFO: Adding View[type: oracle.install.ivw.db.view.DBTypeSelectionGUI viewId: DBTypeSelectionUI uiType: null]
INFO: Adding View[type: oracle.install.ivw.db.view.RACDBTypeSelectionGUI viewId: RACDBTypeSelectionUI uiType: null]
INFO: Adding View[type: oracle.install.ivw.db.view.FinishUI viewId: null uiType: null]
INFO: Adding View[type: oracle.install.ivw.db.view.PrivilegedOSGroupsGUI viewId: null uiType: null]
INFO: Adding View[type: oracle.install.ivw.db.view.InstallTypeGUI viewId: installTypeUI uiType: null]
INFO: Adding View[type: oracle.install.ivw.common.view.AutoUpdatesOptionsUI viewId: AutoUpdatesOptionsUI uiType: null]
INFO: Adding View[type: oracle.install.ivw.common.view.UpdatesListUI viewId: UpdatesListUI uiType: null]
INFO: Adding View[type: oracle.install.ivw.common.view.FinishUpdatesUI viewId: FinishUpdatesUI uiType: null]
INFO: Initial values of Setup Properties :
----------------------------------------------------------------------------------------------------
 PROPERTY                                               VALUE                                      
----------------------------------------------------------------------------------------------------
 AutoUpdatesInstallSettings                             oracle.install.ivw.common.bean.AutoUpdates 
                                                        InstallSettings@30b16f5f                   
 CLUSTER_NODES                                          {}                                         
 COLLECTOR_IGNORE_CONFIGURATION                         false                                      
 COLLECTOR_IGNORE_FAILURES                              false                                      
 COLLECTOR_RESPONSE_FILE                                                                           
 CentralInventorySettings                               oracle.install.ivw.common.bean.CentralInve 
                                                        ntorySettings@2123baa0                     
 DBInstallSettings                                      oracle.install.ivw.db.bean.DBInstallSettin 
                                                        gs@1740d415                                
 DECLINE_SECURITY_UPDATES                               false                                      
 FROM_LOCATION                                          /tmp/database/install/../stage/products.xm 
                                                        l                                          
 INSTALL_TYPE                                           EE                                         
 INVENTORY_LOCATION                                     /u01/app/oraInventory                      
 MYORACLESUPPORT_PASSWORD                               *Protected value, not to be logged*        
 MYORACLESUPPORT_USERNAME                                                                          
 OCMSettings                                            oracle.install.ivw.common.bean.OCMSettings 
                                                        @5eef2e7c                                  
 ORACLE_BASE                                            /u01/app/oracle                            
 ORACLE_HOME                                            /u01/app/oracle/product/12.1.0.2.0/db_1    
 ORACLE_HOSTNAME                                        OEL7-1                                     
 PROXY_HOST                                                                                        
 PROXY_PORT                                                                                        
 PROXY_PWD                                              *Protected value, not to be logged*        
 PROXY_USER                                                                                        
 RootConfigurationSettings                              oracle.install.ivw.common.bean.RootConfigu 
                                                        rationSettings@37d7a424                    
 SECURITY_UPDATES_VIA_MYORACLESUPPORT                   true                                       
 SELECTED_LANGUAGES                                     {"en","ru","uk"}                           
 UNIX_GROUP_NAME                                        oinstall                                   
 WindowsSecureOptionSettings                            oracle.install.ivw.common.bean.WindowsSecu 
                                                        reOptionSettings@28d4ff95                  
 b_rdbmsInstall                                         true                                       
 oracle.install.db.isCCRAuthenticationUsed              false                                      
 oracle_install_IsBuiltInAccount                        false                                      
 oracle_install_IsOracleServiceUserExists               false                                      
 oracle_install_LaunchNetCA                             false                                      
 oracle_install_NoMigration                             false                                      
 oracle_install_OCR_PartitionLocation                                                              
 oracle_install_OSBKP                                   dba                                        
 oracle_install_OSDBA                                   dba                                        
 oracle_install_OSDGD                                   dba                                        
 oracle_install_OSKMT                                   dba                                        
 oracle_install_OSOPER                                  dba                                        
 oracle_install_ProductName                                                                        
 oracle_install_RACInstall                              false                                      
 oracle_install_RDBMSInstalling                         true                                       
 oracle_install_autoupdates_httpProxyPort               0                                          
 oracle_install_autoupdates_httpProxySettings           oracle.install.ivw.common.bean.HttpProxySe 
                                                        ttings@1a170b6d                            
 oracle_install_autoupdates_myOracleSupportCredentials  oracle.install.ivw.common.bean.MyOracleSup 
                                                        portSettings@5106def2                      
 oracle_install_db_ASMSNMPUserPassword                  *Protected value, not to be logged*        
 oracle_install_db_AutoMemoryOption                     false                                      
 oracle_install_db_CharSetOption                        3                                          
 oracle_install_db_CharacterSet                                                                    
 oracle_install_db_ConfigTabSelected                    0                                          
 oracle_install_db_ConfigurationType                    Software Only                              
 oracle_install_db_ConfigureAsContainerDB               false                                      
 oracle_install_db_DiskGroupName                                                                   
 oracle_install_db_DiskGroupNameForASM                                                             
 oracle_install_db_EnableAutoBackup                     false                                      
 oracle_install_db_InstallEdition                       EE                                         
 oracle_install_db_InstallOption                        INSTALL_DB_SWONLY                          
 oracle_install_db_InstallOptionSelected                2                                          
 oracle_install_db_InstallType                          EE                                         
 oracle_install_db_LaunchDBCA                           false                                      
 oracle_install_db_LaunchODMA                           false                                      
 oracle_install_db_LoadExampleSchemas                   false                                      
 oracle_install_db_MountPointLocation                                                              
 oracle_install_db_QuickInstallOption                   false                                      
 oracle_install_db_RecoveryBackUpLocation                                                          
 oracle_install_db_SID                                                                             
 oracle_install_db_ServerPoolCardinality                0                                          
 oracle_install_db_SetOracleBase                        false                                      
 oracle_install_db_SkipHARegistration                   false                                      
 oracle_install_db_StarterDatabaseType                  GENERAL_PURPOSE                            
 oracle_install_db_StorageType                          0                                          
 oracle_install_db_SuperAdminPasswords                  *Protected value, not to be logged*        
 oracle_install_db_SuperAdminSamePasswdForAll           *Protected value, not to be logged*        
 oracle_install_db_SystemClass                          DESKTOP_CLASS                              
 oracle_install_db_Type                                 1                                          
 oracle_install_db_UseFileSystemForRecovery             false                                      
 oracle_install_db_UseSamePassword                      false                                      
 oracle_install_db_isRACOneInstall                      false                                      
 oracle_install_db_managementOption                     DEFAULT                                    
 oracle_install_db_omsPort                              0                                          
 oracle_install_db_racOneServiceName                                                               
 oracle_install_rootConfiguration_ExecuteRootScript     false                                      
----------------------------------------------------------------------------------------------------

INFO: Launching Oracle Database 12c Release 1 Installer
INFO: Started executing the flow in SILENT mode
INFO: Waiting for completion of background operations
INFO: Finishing all forked tasks at state prepInstall
INFO: Waiting for completion all forked tasks at state prepInstall
INFO: All forked task are completed at state prepInstall
INFO: Completed background operations
INFO: Executing action at state prepInstall
INFO: Completed executing action at state <prepInstall>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Moved to state <prepInstall>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Validating state <prepInstall>
WARNING: Validation disabled for the state prepInstall
INFO: Completed validating state <prepInstall>
INFO: Verifying route success
INFO: Checking condition at state <autoupdatesDecider>
INFO: Successfully checked condition at state <autoupdatesDecider>
INFO: Condition matched at state <autoupdatesDecider>.
INFO: Redirecting to route <matched>.
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Executing action at state decideOCMInstall
INFO: Completed executing action at state <decideOCMInstall>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Moved to state <decideOCMInstall>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Validating state <decideOCMInstall>
WARNING: Validation disabled for the state decideOCMInstall
INFO: Completed validating state <decideOCMInstall>
INFO: Verifying route requireOCM
INFO: Checking condition at state <autoupdatesDecider>
INFO: Successfully checked condition at state <autoupdatesDecider>
INFO: Condition matched at state <autoupdatesDecider>.
INFO: Redirecting to route <matched>.
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Executing action at state getOCMDetails
INFO: Completed executing action at state <getOCMDetails>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Moved to state <getOCMDetails>
INFO: Waiting for completion of background operations
INFO: Completed background operations
INFO: Validating state <getOCMDetails>
WARNING: My Oracle Support Username/Email Address Not Specified
INFO: Adding ExitStatus VAR_VALIDATION_FAILURE to the exit status set
WARNING: A log of this session is currently saved as: /tmp/OraInstall2016-10-06_11-02-29PM/installActions2016-10-06_11-02-29PM.log. Oracle recommends that if you want to keep this log, you should move it from the temporary location.
INFO: Finding the most appropriate exit status for the current application
INFO: Exit Status is -2
INFO: Shutdown Oracle Database 12c Release 1 Installer


Пожалуйста, подскажите куда копать? Я давно не занимался установкой Oracle. Делаю всё по своим же мануалам, при помощи которых установил DB ни один раз, хотя я в принципе энтузиаст самоучка. Заранее благодарен за помощь!
...
Рейтинг: 0 / 0
Установка Oracle Database 12c Release 1 на Oracle Linux 7.2
    #39322368
Вячеслав Любомудров
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Участник
MONaH-Rasta
Код: powershell
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
...
INFO: Initial values of Setup Properties :
----------------------------------------------------------------------------------------------------
 PROPERTY                                               VALUE                                      
----------------------------------------------------------------------------------------------------
...
 DECLINE_SECURITY_UPDATES                               false                                      
...
 SECURITY_UPDATES_VIA_MYORACLESUPPORT                   true                                       
...
----------------------------------------------------------------------------------------------------

...
...
WARNING: My Oracle Support Username/Email Address Not Specified
INFO: Adding ExitStatus VAR_VALIDATION_FAILURE to the exit status set
...

Подозреваю, что в файле надо установить еще DECLINE_SECURITY_UPDATES=true для отказа от конфигурации OCM (или MYORACLESUPPORT_USERNAME , соответственно, для конфигурирования)
...
Рейтинг: 0 / 0
Установка Oracle Database 12c Release 1 на Oracle Linux 7.2
    #39322597
MONaH-Rasta
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Гость
Вячеслав Любомудров, да! Благодарю!!!
...
Рейтинг: 0 / 0
3 сообщений из 3, страница 1 из 1
Форумы / Oracle [игнор отключен] [закрыт для гостей] / Установка Oracle Database 12c Release 1 на Oracle Linux 7.2
Найденые пользователи ...
Разблокировать пользователей ...
Читали форум (0):
Пользователи онлайн (0):
x
x
Закрыть


Просмотр
0 / 0
Close
Debug Console [Select Text]