Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Error in installing 11g2 in silent mode - [SEVERE] - Email Address Not Spec

626620Jan 8 2010 — edited Jun 4 2010
I want to install Oracle 11g release 2 in silent mode on Redhat Linux 5.2. I use command
/u01/app/ora_sw/11g2/database/runInstaller -silent -responseFile /u01/app/ora_sw/11g2/database/tdev_install.rsp
where tdev_install.rsp has entries
oracle.install.responseFileVersion=/oracle/install/rspfmt_dbinstall_response_schema_v11_2_0
oracle.install.option=UPGRADE_DB
ORACLE_HOSTNAME=cchdb.thinkstream.com
UNIX_GROUP_NAME=oinstall
INVENTORY_LOCATION=/u01/app/oraInventory
SELECTED_LANGUAGES=en
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=true
oracle.install.db.customComponents=oracle.server:11.2.0.1.0,oracle.sysman.ccr:10.2.7.0.0,oracle.xdk:11.2.0.1.0,oracle.rdbms.oci:11.2.0.1.0,oracle.network:11.2.0.1.0,oracle.network.listener:11.2.0.1.0,oracle.rdbms:11.2.0.1.0,oracle.options:11.2.0.1.0,oracle.rdbms.partitioning:11.2.0.1.0,oracle.oraolap:11.2.0.1.0,oracle.rdbms.dm:11.2.0.1.0,oracle.rdbms.dv:11.2.0.1.0,oracle.rdbms.lbac:11.2.0.1.0,oracle.rdbms.rat:11.2.0.1.0
oracle.install.db.DBA_GROUP=dba
oracle.install.db.CLUSTER_NODES=
oracle.install.db.config.starterdb.type=TRANSACTION_PROCESSING
oracle.install.db.config.starterdb.globalDBName=tdev112.localdomain
oracle.install.db.config.starterdb.SID=tdev112
oracle.install.db.config.starterdb.characterSet=AL32UTF8
oracle.install.db.config.starterdb.memoryOption=true
oracle.install.db.config.starterdb.memoryLimit=3200
oracle.install.db.config.starterdb.installExampleSchemas=false
oracle.install.db.config.starterdb.enableSecuritySettings=true
oracle.install.db.config.starterdb.password.ALL=
oracle.install.db.config.starterdb.control=DB_CONTROL
oracle.install.db.config.starterdb.storageType=FILE_SYSTEM_STORAGE
oracle.install.db.config.starterdb.fileSystemStorage.dataLocation=/app/oracle/oradata
DECLINE_SECURITY_UPDATES=true
oracle.install.db.config.starterdb.dbcontrol.enableEmailNotification=true
oracle.install.db.config.starterdb.dbcontrol.emailAddress=glu@thinkstream.com
oracle.install.db.config.starterdb.dbcontrol.SMTPServer=earth.thinkstream.com
I got error in a couple of seconds
Checking Temp space: must be greater than 120 MB.   Actual 2451 MB    Passed
Checking swap space: must be greater than 150 MB.   Actual 1890 MB    Passed
Preparing to launch Oracle Universal Installer from /tmp/OraInstall2010-01-08_05-20-03PM. 
Please wait ...[oracle@cchdb database]$ [SEVERE] - Email Address Not Specified
 
I removed the last 3 entries involving notification email, but got the same error.
What email address I need to provide and where I should specify it ?

Comments

Pl see MOS Doc 883714.1 ("Preparing to launch Oracle Universal Installer from /tmp/OraInstall... Please wait ...$ [SEVERE] - Email Address Not Specified" errors while installing Oracle database 11gR2 in silent mode) for a solution

HTH
Srini
450804
Hi,

I don't know exactly what is wrong but see:

http://oratoolkit.cvs.sourceforge.net/viewvc/oratoolkit/core/x.y/conf/installManager/response/

which contains valid response files for 10.2 to 11.2 installations (software only, without database creation).

Cheers,
David

OCP 9i
http://www.oratoolkit.ch/knowledge/howto/installation/otn.php

Edited by: David D'Acquisto on 09.01.2010 10:02
752336
Where I can find this 'MOS Doc 883714.1'? Can you provide url if possible?

I can't proceed with my installation because of this error.

Please help!!!

thanks!
Srini Chavali-Oracle
MOS = My Oracle Support at https://support.oracle.com

You will need a valid CSI (Customer Support Identifier) in order ro register/login - a CSI is given when you buy Support from Oracle.

Pl do not request folks to post the contents of the document here - it violates our Support contract :-)

HTH
Srini
752336
After playing with some of the parameters, turns out you need to set 'DECLINE_SECURITY_UPDATES=true' and that will get you pass this error.

Hope this helps.
Brumpf-Oracle
Hi,

Is there any more info on this issue. I'm trying this install and keep getting this error.

I've set the DECLINE_SECURITY_UPDATES to true.

I've added an email and password for the MYORACLESUPPORT_USERNAME and MYORACLESUPPORT_PASSWORD.

Regardless of what I set I still get this error message.

Can anyone point me in the right direction?

Thanks very much,

Beth
505664
Finally figured this one out.
It happens when oracle.install.db.config.starterdb.type is set to TRANSACTION_PROCESSING.
Apparently "TRANSACTION_PROCESSING" and "GENERAL_PURPOSE/TRANSACTION_PROCESSING" are not valid types, even though the response template file and the response file generated via OUI list the following:

Response template file included in the database package:
+#------------------------------------------------------------------------------+
+# Specify the type of database to create.+
+# It can be one of the following:+
+# - GENERAL_PURPOSE/TRANSACTION_PROCESSING+
+# - DATA_WAREHOUSE+
+#------------------------------------------------------------------------------+

Response file generated by OUI during an interactive install:
+#-------------------------------------------------------------------------------+
+# One of the following+
+# - GENERAL_PURPOSE+
+# - TRANSACTION_PROCESSING+
+# - DATAWAREHOUSE+
+#-------------------------------------------------------------------------------+


In order to install in silent mode I used the following settings:

oracle.install.db.config.starterdb.type=GENERAL_PURPOSE
oracle.install.db.config.starterdb.dbcontrol.enableEmailNotification=false
oracle.install.db.config.starterdb.dbcontrol.emailAddress=
oracle.install.db.config.starterdb.dbcontrol.SMTPServer=
MYORACLESUPPORT_USERNAME=
MYORACLESUPPORT_PASSWORD=
SECURITY_UPDATES_VIA_MYORACLESUPPORT=false
DECLINE_SECURITY_UPDATES=true
505664
Deleted duplicate post.

Thank you for the suggestion David.

Edited by: user502661 on May 13, 2010 6:56 AM
505664
Deleted duplicate post.

Thank you for the suggestion David.

Edited by: user502661 on May 13, 2010 6:57 AM
505664
Please excuse the multiple posts. Forums was acting up when I posted the above. Hopefully a moderator can and will delete the duplicate posts.
450804
user502661 wrote:
Please excuse the multiple posts. Forums was acting up when I posted the above. Hopefully a moderator can and will delete the duplicate posts.
Why don't you just edit your duplicate posts? You can do this by your own. Just remove the content and write a small sentence or keep it empty! ;)
Heiko Kaschube
Got it...

NOT working:
./runInstaller -silent -responseFile*=*/mnt/db_iso/response/db_only_software.rsp

Working well:
./runInstaller -silent -responseFile /mnt/db_iso/response/db_only_software.rsp

Obviously not response file is used in the first case. What I'd expect is a hint that no response file is used for installation. I haven't found any. Neither on the screen nor in any log files.

Regards, Heiko
1 - 12
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Jul 2 2010
Added on Jan 8 2010
12 comments
22,069 views