Silent Mode installation in WinNT Server

When i trying this command
server700_win32.exe -mode=silent -silent_xml="d:\sile
nt.xml" -log="d:\wl_install.log"
i am getting this error ...
2002-09-10 19:35:07,976 INFO [readInstallOptions] com.bea.installer.utils.InstallerUtils
- Reading: C:\bea\installoptions.bea
2002-09-10 19:35:08,006 WARN [readInstallOptions] com.bea.installer.utils.InstallerUtils
- Unable to read install options!
java.io.FileNotFoundException: C:\bea\installoptions.bea (The system cannot find
the path specified)
     at java.io.FileInputStream.open(Native Method)
     at java.io.FileInputStream.<init>(FileInputStream.java:59)
     at java.io.FileInputStream.<init>(FileInputStream.java:90)
     at com.bea.installer.utils.InstallerUtils.readInstallOptions(Unknown Source)
     at com.bea.installer.tasks.ReadInstallOptionsTask.run(Unknown Source)
     at java.lang.Thread.run(Thread.java:479)

One like this drove me nuts last week.
Try making your backslashes double backslashes!
Are the options specified in a file? Don't do it all on the command line.
For example: (this is 6.1; names might be different in 7.0)
C:\Cases>cat 350475\installer.properties
INSTALLER_UI=silent
USER_LOCALE=en
BEAHOME=C:\\BEA
USER_INSTALL_DIR=C:\\bea\\wlserver6.1
C_domainName=mydomain
C_serverName=myserver
C_serverListenPort=7001
C_serverSSLListenPort=7002
INSTALL_NT_SERVICE=no
C_password=weblogic
server700_win32.exe -f C:\mypath\installer.properties
Good Luck,
Wayne Scott
ashwani wrote:
When i trying this command
server700_win32.exe -mode=silent -silent_xml="d:\sile
nt.xml" -log="d:\wl_install.log"
i am getting this error ...
2002-09-10 19:35:07,976 INFO [readInstallOptions] com.bea.installer.utils.InstallerUtils
- Reading: C:\bea\installoptions.bea
2002-09-10 19:35:08,006 WARN [readInstallOptions] com.bea.installer.utils.InstallerUtils
- Unable to read install options!
java.io.FileNotFoundException: C:\bea\installoptions.bea (The system cannot find
the path specified)
     at java.io.FileInputStream.open(Native Method)
     at java.io.FileInputStream.<init>(FileInputStream.java:59)
     at java.io.FileInputStream.<init>(FileInputStream.java:90)
     at com.bea.installer.utils.InstallerUtils.readInstallOptions(Unknown Source)
     at com.bea.installer.tasks.ReadInstallOptionsTask.run(Unknown Source)
     at java.lang.Thread.run(Thread.java:479)

Similar Messages

  • How to install Oracle 10g Database (Silent Mode) on Ms. Windows

    Hello,
    I need to find out how to run a silent mode installation for Oracle 10g Database. I could perform such an installation for Oracle EX because I could found the installation guidelines.
    I need some document to guide me from scratch, how to write response files, etc.
    Thanks in advance!!

    Hi,
    this would help;
    http://tinyurl.com/ybzvg4v

  • Add a machine to Managed Server using silent mode script in wls12c (x64)

    Hi,
    I am Kanakaraju. I am new to this silent installation of weblogic server and domain creation. my requirement while creating domain with production mode is,
    I need to add followings to the domain.
    1. Data source
    2. JMSServer
    3. ConnectionFactory
    4. JMSModule
    5. Queue
    6. Machine which can be assigned to Managed Server.
    7. subdeployment
    I can add only first 3 (Data source, JMSManager, Connection factory), but can't add remaining.
    when i use "+create JMSQueue "PfPerformanceProfileQueue" as queue;+", it is throwing exception like JMSQueue is not found.
    Can anybody please help me creating the script to add these?
    Following is my Silent mode script
    read template from "C:\Oracle\Weblogic12\wlserver_12.1\common\templates\domains\wls.jar";
    set CreateStartMenu "false";
    set JavaHome "C:\bea10_3_3\jrockit_160_17_R28.0.0-679";
    set ServerStartMode "prod";
    find Server "AdminServer" as AdminServer;
    set AdminServer.ListenAddress "";
    set AdminServer.ListenPort "7003";
    set AdminServer.SSL.Enabled "true";
    set AdminServer.SSL.ListenPort "7002";
    //We can directly create a new managed server.
    create Server "ManagedServer_1" as ManagedServer_1;
    set ManagedServer_1.ListenAddress "";
    set ManagedServer_1.ListenPort "7001";
    set ManagedServer_1.SSL.Enabled "true";
    set ManagedServer_1.SSL.ListenPort "7002";
    //Create JDBC datasource and targeting it to cluster
    create JDBCConnectionPool "xxxxDSName" as xxxxxDSName;
    set MVestDSName.DriverName "oracle.jdbc.OracleDriver";
    set MVestDSName.URL "jdbc:oracle:thin:@(xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx)";
    set MVestDSName.Password "xxxxxxx";
    set MVestDSName.Properties "user=xxxxxxx_user";
    assign JDBCConnectionPool "*" to target "ManagedServer_1";
    //create JMS server
    create JMSServer "MVestJMSServer" as jmsserver;
    assign JMSServer "*" to target "ManagedServer_1";
    //create JMS queue, default subdeployment will be created and targeted. Not sure
    create JMSConnectionFactory "xxxxxConnectionFactory" as connectionFactory;
    set connectionFactory.JNDIName "jms/xxxxxConnectionFactory"; //JNDI name for Queue
    assign JMSConnectionFactory "*" to Target "ManagedServer_1"; //Target queue to JMS server
    //create JMS queue, default subdeployment will be created and targeted. Not sure
    //create JMSQueue "PfPerformanceProfileQueue" as queue;
    //set queue.JNDIName "jms/PfPerformanceProfileQueue"; //JNDI name for Queue
    //set queue.StoreEnabled "false";
    //set queue.JMSServer "JMSServer"; //Target queue to JMS server
    //use templates default weblogic user
    find User "weblogic" as u1;
    set u1.password "weblogic1";
    //create a new user
    create User "Admin" as u2;
    set u2.password "weblogic1";
    //assign User "Admin" to Group "Administators";
    write domain to "C:\Oracle\Weblogic12\user_projects\domains\silent-domain"; // The domain name will be "silent-domain"
    close template;
    Edited by: 998028 on 4 Apr, 2013 5:35 AM
    Edited by: 998028 on 9 Apr, 2013 6:28 AM

    Hi,
    I am Kanakaraju. I am new to this silent installation of weblogic server and domain creation. my requirement while creating domain with production mode is,
    I need to add followings to the domain.
    1. Data source
    2. JMSServer
    3. ConnectionFactory
    4. JMSModule
    5. Queue
    6. Machine which can be assigned to Managed Server.
    7. subdeployment
    I can add only first 3 (Data source, JMSManager, Connection factory), but can't add remaining.
    when i use "+create JMSQueue "PfPerformanceProfileQueue" as queue;+", it is throwing exception like JMSQueue is not found.
    Can anybody please help me creating the script to add these?
    Following is my Silent mode script
    read template from "C:\Oracle\Weblogic12\wlserver_12.1\common\templates\domains\wls.jar";
    set CreateStartMenu "false";
    set JavaHome "C:\bea10_3_3\jrockit_160_17_R28.0.0-679";
    set ServerStartMode "prod";
    find Server "AdminServer" as AdminServer;
    set AdminServer.ListenAddress "";
    set AdminServer.ListenPort "7003";
    set AdminServer.SSL.Enabled "true";
    set AdminServer.SSL.ListenPort "7002";
    //We can directly create a new managed server.
    create Server "ManagedServer_1" as ManagedServer_1;
    set ManagedServer_1.ListenAddress "";
    set ManagedServer_1.ListenPort "7001";
    set ManagedServer_1.SSL.Enabled "true";
    set ManagedServer_1.SSL.ListenPort "7002";
    //Create JDBC datasource and targeting it to cluster
    create JDBCConnectionPool "xxxxDSName" as xxxxxDSName;
    set MVestDSName.DriverName "oracle.jdbc.OracleDriver";
    set MVestDSName.URL "jdbc:oracle:thin:@(xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx)";
    set MVestDSName.Password "xxxxxxx";
    set MVestDSName.Properties "user=xxxxxxx_user";
    assign JDBCConnectionPool "*" to target "ManagedServer_1";
    //create JMS server
    create JMSServer "MVestJMSServer" as jmsserver;
    assign JMSServer "*" to target "ManagedServer_1";
    //create JMS queue, default subdeployment will be created and targeted. Not sure
    create JMSConnectionFactory "xxxxxConnectionFactory" as connectionFactory;
    set connectionFactory.JNDIName "jms/xxxxxConnectionFactory"; //JNDI name for Queue
    assign JMSConnectionFactory "*" to Target "ManagedServer_1"; //Target queue to JMS server
    //create JMS queue, default subdeployment will be created and targeted. Not sure
    //create JMSQueue "PfPerformanceProfileQueue" as queue;
    //set queue.JNDIName "jms/PfPerformanceProfileQueue"; //JNDI name for Queue
    //set queue.StoreEnabled "false";
    //set queue.JMSServer "JMSServer"; //Target queue to JMS server
    //use templates default weblogic user
    find User "weblogic" as u1;
    set u1.password "weblogic1";
    //create a new user
    create User "Admin" as u2;
    set u2.password "weblogic1";
    //assign User "Admin" to Group "Administators";
    write domain to "C:\Oracle\Weblogic12\user_projects\domains\silent-domain"; // The domain name will be "silent-domain"
    close template;
    Edited by: 998028 on 4 Apr, 2013 5:35 AM
    Edited by: 998028 on 9 Apr, 2013 6:28 AM

  • Sun application server install in silent mode

    Hi,
    Can any body let me know the procedure to install sun ONE 8 application server in silent mode on windows.
    Thanks
    Raj

    Did you try the silent install steps in the Installation Guide?
    http://docs.sun.com/source/819-0080/install_pe.html#wp20355

  • LV 8.5.1 Installer "run after installation" not executed in silent mode ; Autoupdate

    Hi all,
    I developed a software used "inhouse" by most of my colleagues. This software is changed continuously.
    In the past I had to inform everyone that there's a new release available.
    Thus I developed a "quick and dirty" autoupdate mechanism. (See attachments)
    The application looks for a file located on our server, which contains the version number of the most current release.
    If the version number of the installed software and the version number in this file differ, the Installer for the new release is executed.
    In the Installer settings I run the installed software after installation finished.
    So that the user doesn't notice there was an update and the software starts as allways.
    The installer is started with commandline options to install in silent mode with surpressed License Notification und supressed restart.
    The start of the installed software after installation works if I start setup.exe in "normal" manner (doubleclick setup.exe)
    BUT the software DOES NOT start after installation when installed in silent mode. (Commandline prompt: setup.exe /q /AcceptLicenses yes /r:n )
    (Tested with XP, Vista, 7)
    Does anyone know how to get this working ?
    Thanks in advance, best regards,
    Balze

    Balze wrote:
    Hi Andrey,
    neither /qb nor /qf works
    Well, just checked - it seems to be works as expected in LabVIEW 2010 and doesn't work with 8.5.1 as you have described.
    There are some bugs in installer's builder was fixed between versions 8.5 and 10.0.
    What you can do - upgrade to latest LabVIEW version or try to fix installer manually. I guess trouble present in \bin\dp\install.msi file. You can check what inside of msi with Orcas utility provided by Microsoft.
    Hope it helps,
    with best regards,
    Andrey.
    PS
    Whole family a little bit ill due to relative cold weather...

  • 11g R2 Installation (silent mode) error on RHEL5

    Please help me, I´m trying to install database 11g R2 using silent mode: I have passed all preinstallation tasks
    ./runInstaller -silent -responseFile /Oracle/req/db_install.rsp
    Starting Oracle Universal Installer...
    Checking Temp space: must be greater than 80 MB. Actual 39642 MB Passed
    Checking swap space: must be greater than 150 MB. Actual 8191 MB Passed
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2010-06-04_12-34-00PM. Please wait ...[oracle@localhost database]$ Exception in thread "main" java.lang.NoClassDefFoundError
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:164)
    at java.awt.Toolkit$2.run(Toolkit.java:821)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.awt.Toolkit.getDefaultToolkit(Toolkit.java:804)
    at javax.swing.UIManager.initialize(UIManager.java:1262)
    at javax.swing.UIManager.maybeInitialize(UIManager.java:1245)
    at javax.swing.UIManager.getUI(UIManager.java:851)
    at javax.swing.JPanel.updateUI(JPanel.java:104)
    at javax.swing.JPanel.<init>(JPanel.java:64)
    at javax.swing.JPanel.<init>(JPanel.java:87)
    at javax.swing.JPanel.<init>(JPanel.java:95)
    at oracle.sysman.oii.oiif.oiifo.OiifoOCMUI.<init>(OiifoOCMUI.java:125)
    at oracle.sysman.oii.oiif.oiifo.OiifoOCMInterfaceManager.<init>(OiifoOCMInterfaceManager.java:79)
    at oracle.sysman.oii.oiif.oiifo.OiifoOCMInterfaceManager.getInstance(OiifoOCMInterfaceManager.java:124)
    at oracle.install.ivw.db.driver.DBInstaller.run(DBInstaller.java:123)
    at oracle.install.commons.util.Application.startup(Application.java:869)
    at oracle.install.commons.flow.FlowApplication.startup(FlowApplication.java:164)
    at oracle.install.commons.flow.FlowApplication.startup(FlowApplication.java:181)
    at oracle.install.commons.base.driver.common.Installer.startup(Installer.java:265)
    at oracle.install.ivw.db.driver.DBInstaller.startup(DBInstaller.java:114)
    at oracle.install.ivw.db.driver.DBInstaller.main(DBInstaller.java:132)
    and the log file:
    cat installActions2010-06-04_12-34-00PM.log
    Using paramFile: /Oracle/database/install/oraparam.ini
    Checking Temp space: must be greater than 80 MB. Actual 39642 MB Passed
    Checking swap space: must be greater than 150 MB. Actual 8191 MB Passed
    The commandline for unzip:
    /Oracle/database/install/unzip -qqqo ../stage/Components/oracle.jdk/1.5.0.17.0/1/DataFiles/\*.jar -d /tmp/OraInstall2010-06-04_12-34-00PM
    Using the umask value '022' available from oraparam.ini
    Execvp of the child jre : the cmdline is /tmp/OraInstall2010-06-04_12-34-00PM/jdk/jre/bin/java, and the argv is
    /tmp/OraInstall2010-06-04_12-34-00PM/jdk/jre/bin/java
    -Doracle.installer.library_loc=/tmp/OraInstall2010-06-04_12-34-00PM/oui/lib/linux
    -Doracle.installer.oui_loc=/tmp/OraInstall2010-06-04_12-34-00PM/oui
    -Doracle.installer.bootstrap=TRUE
    -Doracle.installer.startup_location=/Oracle/database/install
    -Doracle.installer.jre_loc=/tmp/OraInstall2010-06-04_12-34-00PM/jdk/jre
    -Doracle.installer.nlsEnabled="TRUE"
    -Doracle.installer.prereqConfigLoc=
    -Doracle.installer.unixVersion=2.6.18-92.el5
    -mx150m
    -cp
    /tmp/OraInstall2010-06-04_12-34-00PM::/tmp/OraInstall2010-06-04_12-34-00PM/ext/jlib/emocmutl.jar:/tmp/OraInstall2010-06-04_12-34-00PM/ext/jlib/remoteinterfaces.jar:/tmp/OraInstall2010-06-04_12-34-00PM/ext/jlib/OraPrereqChecks.jar:/tmp/OraInstall2010-06-04_12-34-00PM/ext/jlib/orai18n-mapping.jar:/tmp/OraInstall2010-06-04_12-34-00PM/ext/jlib/instcommon.jar:/tmp/OraInstall2010-06-04_12-34-00PM/ext/jlib/installcommons_1.0.0b.jar:/tmp/OraInstall2010-06-04_12-34-00PM/ext/jlib/ssh.jar:/tmp/OraInstall2010-06-04_12-34-00PM/ext/jlib/instdb.jar:/tmp/OraInstall2010-06-04_12-34-00PM/ext/jlib/OraPrereq.jar:/tmp/OraInstall2010-06-04_12-34-00PM/ext/jlib/orai18n-utility.jar:/tmp/OraInstall2010-06-04_12-34-00PM/ext/jlib/jsch.jar:/tmp/OraInstall2010-06-04_12-34-00PM/ext/jlib/prov_fixup.jar:/tmp/OraInstall2010-06-04_12-34-00PM/ext/jlib/cvu.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/OraInstaller.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/oneclick.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/xmlparserv2.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/share.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/OraInstallerNet.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/emCfg.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/emocmutl.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/OraPrereq.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/jsch.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/ssh.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/remoteinterfaces.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/http_client.jar:../stage/Components/oracle.swd.opatch/11.2.0.1.0/1/DataFiles/jlib/opatch.jar:../stage/Components/oracle.swd.opatch/11.2.0.1.0/1/DataFiles/jlib/opatchactions.jar:../stage/Components/oracle.swd.opatch/11.2.0.1.0/1/DataFiles/jlib/opatchprereq.jar:../stage/Components/oracle.swd.opatch/11.2.0.1.0/1/DataFiles/jlib/opatchutil.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/OraCheckPoint.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/InstImages.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/InstHelp.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/InstHelp_de.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/InstHelp_es.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/InstHelp_fr.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/InstHelp_it.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/InstHelp_ja.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/InstHelp_ko.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/InstHelp_pt_BR.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/InstHelp_zh_CN.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/InstHelp_zh_TW.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/oracle_ice.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/help4.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/help4-nls.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/ewt3.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/ewt3-swingaccess.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/ewt3-nls.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/swingaccess.jar::/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/jewt4.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/jewt4-nls.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/orai18n-collation.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/orai18n-mapping.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/ojmisc.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/xml.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/srvm.jar:/tmp/OraInstall2010-06-04_12-34-00PM/oui/jlib/srvmasm.jar
    oracle.install.ivw.db.driver.DBInstaller
    -scratchPath
    /tmp/OraInstall2010-06-04_12-34-00PM
    -sourceLoc
    /Oracle/database/install/../stage/products.xml
    -sourceType
    network
    -timestamp
    2010-06-04_12-34-00PM
    -silent
    -responseFile
    /Oracle/requisitos/db_install.rs
    thx in advance

    Sorry, I'm gonna paste it again:
    Exception in thread "main" java.lang.NoClassDefFoundError
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:164)
    at java.awt.Toolkit$2.run(Toolkit.java:821)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.awt.Toolkit.getDefaultToolkit(Toolkit.java:804)
    at javax.swing.UIManager.initialize(UIManager.java:1262)
    at javax.swing.UIManager.maybeInitialize(UIManager.java:1245)
    at javax.swing.UIManager.getUI(UIManager.java:851)
    at javax.swing.JPanel.updateUI(JPanel.java:104)
    at javax.swing.JPanel.<init>(JPanel.java:64)
    at javax.swing.JPanel.<init>(JPanel.java:87)
    at javax.swing.JPanel.<init>(JPanel.java:95)
    at oracle.sysman.oii.oiif.oiifo.OiifoOCMUI.<init>(OiifoOCMUI.java:125)
    at oracle.sysman.oii.oiif.oiifo.OiifoOCMInterfaceManager.<init>(OiifoOCMInterfaceManager.java:79)
    at oracle.sysman.oii.oiif.oiifo.OiifoOCMInterfaceManager.getInstance(OiifoOCMInterfaceManager.java:124)
    at oracle.install.ivw.db.driver.DBInstaller.run(DBInstaller.java:123)
    at oracle.install.commons.util.Application.startup(Application.java:869)
    at oracle.install.commons.flow.FlowApplication.startup(FlowApplication.java:164)
    at oracle.install.commons.flow.FlowApplication.startup(FlowApplication.java:181)
    at oracle.install.commons.base.driver.common.Installer.startup(Installer.java:265)
    at oracle.install.ivw.db.driver.DBInstaller.startup(DBInstaller.java:114)
    at oracle.install.ivw.db.driver.DBInstaller.main(DBInstaller.java:132)
    Actually I´m checking again the software requirements
    Thx!!!

  • Problems with JRE installation 1.6.0_18 in silent mode

    Hi!
    I have problems with installing the JRE from the cmd line in silent mode and in a directory with spaces in the path.
    If I remove the spaces in the INSTALLDIR, the JRE installs in the directory I have specified but not when I use spaces in the path.
    The command I run is following:
    jre-6u18-windows-i586.exe /s /v"/qn INSTALLDIR="C:\Program Files (x86)\company\product test\java\""
    all I get is the help window to the windows installer with the different options. What am I missing?
    BR,
    /Peter

    Hi
    You  should install this Patch:
    Patch 13948973: JDEV 11.1.1.6.0 FREEZES IN CUSTOMIZATION MODE DUE TO DEADLOCK
    After the installation the JDev works fine again.
    Regards, David Perez

  • Can an ADT-packaged native installer install the AIR runtime in silent mode?

    Silent installation of my app works fine when the runtime is installed, as follows:
    <path>\MyApp.exe -silent -location "\"C:\Program Files\MyApp\"" -desktopShortcut -programMenu
    However, if the runtime is not installed, the invocation does nothing. I've also tried -eulaAccepted.
    Is it possible to silently install the app, yet if the runtime is not installed, initiate the runtime install automatically from adobe, preferably with a eula prompt for the user?
    Worst case, if the runtime must be bundled in the package, is a sidecar install supported for native installers?
    I should note, I cannot package the app as .air. The app uses NativeProcess and bundles an exe.
    Thanks.

    chris.campbell wrote:
    Dmitry Svetlakov wrote:
    I try use silent mode under Mac OS - doesn't work in this situation: Adobe AIR not installed on system.
    Because isntaller needs in access from administrator.
    Log:
    Jul 18 15:36:01 user-macbook-pro /var/folders/f+/f+YgX8A8EzyL0WM6aZ2rT++++TI/-Tmp-/airNEZFRK/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[8694]: Could not create directory at /Applications/Adobe/Flash Player/AddIns/airappinstaller
    Jul 18 15:36:01 user-macbook-pro /var/folders/f+/f+YgX8A8EzyL0WM6aZ2rT++++TI/-Tmp-/airNEZFRK/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[8694]: Error occurred during copy and set resource fork operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception Error: Could not create directory /Applications/Adobe/Flash Player/AddIns/airappinstaller" errorID=3001]
    Jul 18 15:36:09 user-macbook-pro /var/folders/f+/f+YgX8A8EzyL0WM6aZ2rT++++TI/-Tmp-/airNEZFRK/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[8694]: Rollback complete
    Jul 18 15:36:09 user-macbook-pro /var/folders/f+/f+YgX8A8EzyL0WM6aZ2rT++++TI/-Tmp-/airNEZFRK/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[8694]: Got an unexpected fatal error while in stateInstalling: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception Error: Could not create directory /Applications/Adobe/Flash Player/AddIns/airappinstaller" errorID=3001]
    Jul 18 15:36:09 user-macbook-pro /var/folders/f+/f+YgX8A8EzyL0WM6aZ2rT++++TI/-Tmp-/airNEZFRK/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer[8694]: Application Installer end with exit code 7
    Hi Dmitry,
    Are you trying to sub launch AIR silently through your installer?  If so, and you haven't already, please fill out the AIR distribution agreement form and you'll receive documentation that discusses silent installs and uninstall's.
    If you are just trying this out, you are correct that the runtime needs admin access.  You can achieve this by prefixing your command line with sudo.
    Thanks,
    Chris
    Yes, but that not decide our task: create custom installer from air app native installer. I hope you understand that i mean. This installer should work for anyone user - and have to install Adobe AIR Runtime.

  • Installer command line switches or "How to install Flash Player in silent mode"

    Please note that all browser windows must be closed before executing either the installer or uninstaller.  The following document describes the different parameters:
    Silent install command line argument doesn't work | Flash Player 10.1

    There is no MSI (nor .exe) for the Authorware web player.
    It's only
    available as a .cab. However, of course, you could unpack the
    can and
    create your own MSI if you have the proper tool (i.e
    InstallShield).
    Someone (in China?) did that a couple years ago. Searching
    the archives
    of this group on Google, or perhaps the A'ware Listserve, may
    reveal...
    Erik
    ersatyle wrote:
    > hi, I'm looking to install the authorware player in
    silent mode for several
    > computer in an organization, I would like to have an
    installer (.exe or .msi)
    > for internet explorer, does anyone could help me with
    that? tahnks!
    >
    Erik Lord
    http://www.capemedia.net
    Adobe Community Expert - eLearning
    http://www.adobe.com/communities/experts/
    http://www.awaretips.net -
    Authorware Tips!

  • WLPI Installation  in Silent Mode  using  sh  wlpi_121_unix.bin -i console

    Hello,
    I am installing WLPI 1.2.1 on Sun Solaris.
    JAVA_HOME : /prod/appl/java/jdk1.3.0_02
    WEBLOGIC_HOME : /prod/appl/weblogic. This directory contains WLS 6.0.0.1.
    PATH : /prod/appl/java/jdk1.3.0_02/bin:/usr/bin:/usr/local/bin:/prod/appl/weblogic/6.0.0.1/bin:.
    Console mode installation doesn't display all option mentioned in WLPI Console-Mode
    Installation. WHY ? It displays only 1st option.
    After selecting first option , JDK 1.3 was not found at
    /prod/appl/weblogic/jdk130. It is required for all WebLogic Server products.
    Why WLPI Installer is giving me above error ???
    Thanks
    JIgnesh Patel

    hi Yuri,
    Am not expert, But I beleive ur situation exactly matched the below secnario.
    EM 12c: Enterprise Manager 12.1.0.3 Cloud Control Agent deployment fails with Error: The plug-in configuration for the oracle.sysman.oh monitoring plug-in may have failed (Doc ID 1930414.1)
    PERL5LIB variable should be unset and the issue occurs even after unsetting it (see Note 1587715.1).
    Regards
    Krishnan

  • Crs installation in silent mode report   "No such file or directory"

    Hi,
    i'm trying to install crs 11.2 in silent mode with response file.
    my oracle_home is /grid and when i execute runinstaller it reports
    "Error returned: No such file or directory" after check prerequisite.
    I try to change oracle_home in /grid/crs and the error was not reported.
    i need to put grid 11.2 on /grid oracle_home.
    can anyone help me?

    First rule, use the Optimal Flexible Architecture (OFA) standard.
    http://download.oracle.com/docs/cd/E11882_01/em.112/e12255/oui2_manage_oracle_homes.htm#OUICG165
    Will I need the output log.
    But check this
    http://download.oracle.com/docs/cd/E17116_01/doc/install.112/e10815/crsunix.htm#CBHFHABD
    Regards,
    Levi Pereira

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

    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.rspwhere 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.comI 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 ?

    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

  • Upgrade Database from 10.2.0.5.0 to 11.2.0.3.0 in Silent Mode

    Hello there,
    Previously, I had posted a thread on how to upgrade database from 10.2.0.5.0 to 11.2.0.3.0 through the wizards provided (GUI-based) and had successfully upgraded the database. Now, I am attempting to upgrade the database from 10.2.0.5.0 to 11.2.0.3.0 once more but this time, in silent mode (console-based). Unfortunately, I am lack of knowledge regarding the installation of the software and upgrading the database in silent mode.
    I managed to figure out this much so far:
    1 . Traverse through the installation directory to the directory shown below:
           11.2.0.3 > Extracted > database > response
    2 . Fill up the blanks of db_install.rsp file:
           oracle.install.option=INSTALL_DB_SWONLY
           SELECTED_LANGUAGES=en
           ORACLE_HOME=C:\Oracle\11g\DBSwLoc
           ORACLE_BASE=C:\Oracle\11g
           oracle.install.db.InstallEdition=EE
           oracle.install.db.EEOptionsSelection=false
           oracle.install.db.isRACOneInstall=false
           oracle.install.db.config.starterdb.memoryOption=true
           oracle.install.db.config.starterdb.installExampleSchemas=false
           oracle.install.db.config.starterdb.enableSecuritySettings=true
           oracle.install.db.config.starterdb.control=DB_CONTROL
           oracle.install.db.config.starterdb.automatedBackup.enable=false
           oracle.installer.autoupdates.option=SKIP_UPDATES
    3 . Save new db_install.rsp file to a new location (shorter path name without spacing will be best recommended)
    4 . Traverse through the installation directory to where the setup file is located.
    5 . Execute the following command:
           setup.exe -silent -waitforcompletion -responseFile C:\db_install_updated.rspThe result I received is as shown below:
    Starting Oracle Universal Installer...
    Preparing to launch Oracle Universal Installer from C:\Users\...\Temp\OraInstall2012-12-13_03-16-43PM.  Please wait ... [WARNING] - My Oracle Support Username/Email Address Not Specified
    [SEVERE] - Provide the My Oracle Support password.
    Please press Enter to exit...
    Previously in the db_install_updated.rsp response file, I had set autoupdate option to SKIP_UPDATES but why does it still prompt me for the Oracle Support account?
    Edited by: Maxwell T on Dec 13, 2012 4:05 PM

    After running the command below to upgrade the current database (Oracle 10.2.0.5.0):
    dbua -silent -sid DB01 -oracleHome C:\Oracle\10g\DBSwLoc -oracleBase C:\Oracle\10g -diagnosticDest C:\Oracle\11g -sysDBAUserName sys -sysDBAPassword password -autoextendFiles -upgradeTimezone -commonFileLocation C:\Oracle\11g\DBSwLoc\oradata\database -recompile_invalid_objects true -degree_of_parallelism 7 -dbsnmpPassword DefaultPassword1 -sysmanPassword DefaultPassword1 This is the result:
    Oracle recommends gathering dictionary statistics prior to upgrading the database.  Refer to the Upgrade Guide for Performing Pre Upgrade
    UPGRADE_PROGRESS : 0%
    UPGRADE_PROGRESS : 4%
    Upgrading Oracle Server
    UPGRADE_PROGRESS : 5%
    UPGRADE_PROGRESS : 6%
    UPGRADE_PROGRESS : 7%
    UPGRADE_PROGRESS : 8%
    UPGRADE_PROGRESS : 9%
    UPGRADE_PROGRESS : 10%
    UPGRADE_PROGRESS : 11%
    UPGRADE_PROGRESS : 12%
    UPGRADE_PROGRESS : 13%
    UPGRADE_PROGRESS : 14%
    UPGRADE_PROGRESS : 15%
    UPGRADE_PROGRESS : 16%
    UPGRADE_PROGRESS : 17%
    UPGRADE_PROGRESS : 18%
    UPGRADE_PROGRESS : 19%
    UPGRADE_PROGRESS : 20%
    UPGRADE_PROGRESS : 20%
    UPGRADE_PROGRESS : 21%
    UPGRADE_PROGRESS : 22%
    UPGRADE_PROGRESS : 23%
    UPGRADE_PROGRESS : 24%
    UPGRADE_PROGRESS : 25%
    UPGRADE_PROGRESS : 26%
    UPGRADE_PROGRESS : 27%
    UPGRADE_PROGRESS : 28%
    UPGRADE_PROGRESS : 29%
    UPGRADE_PROGRESS : 30%
    Collecting information from database
    UPGRADE_PROGRESS : 31%
    UPGRADE_PROGRESS : 32%
    UPGRADE_PROGRESS : 53%
    Modifying and starting Oracle instance
    UPGRADE_PROGRESS : 58%
    Copying database files
    UPGRADE_PROGRESS : 60%
    Switching database files
    UPGRADE_PROGRESS : 62%
    UPGRADE_PROGRESS : 63%
    ORA-01167: two files are the same file/group number or the same fileORA-00202: control file: 'C:\ORACLE\11G\FULLCLIENT\ORADATA\DATABASE\LV01\CTRLLV01.ORA'Any suggestions for this error?
    Thank you in advance.

  • NetCA failed to install in silent mode

    1. My system - without X
    2. I am run runinstaller in silent mode and get error:
    INFO: Starting to execute configuration assistants
    INFO: Command = /u01/app/oracle/product/10.2.0/db_1/jdk/jre//bin/java -Duser.dir=/u01/app/oracle/product/10.2.0/db_1/network/jlib -classpath /u01/app/oracle/product/10.2.0/db_1/jdk/jre//lib/i18n.jar:/u01/app/oracle/product/10.2.0/db_1/jdk/jre//lib/rt.jar:/u01/app/oracle/product/10.2.0/db_1/jlib/ewt3.jar:/u01/app/oracle/product/10.2.0/db_1/jlib/ewtcompat-3_3_15.jar:/u01/app/oracle/product/10.2.0/db_1/jlib/netcfg.jar:/u01/app/oracle/product/10.2.0/db_1/network/jlib/netcam.jar:/u01/app/oracle/product/10.2.0/db_1/network/jlib/netca.jar:/u01/app/oracle/product/10.2.0/db_1/jlib/help4.jar:/u01/app/oracle/product/10.2.0/db_1/jlib/jewt4.jar:/u01/app/oracle/product/10.2.0/db_1/jlib/oracle_ice.jar:/u01/app/oracle/product/10.2.0/db_1/jlib/share.jar:/u01/app/oracle/product/10.2.0/db_1/jlib/swingall-1_1_1.jar:/u01/app/oracle/product/10.2.0/db_1/jlib/srvmhas.jar:/u01/app/oracle/product/10.2.0/db_1/jlib/srvm.jar:/u01/app/oracle/product/10.2.0/db_1/network/tools:/u01/app/oracle/product/10.2.0/db_1/jlib/ldapjclnt9.jar:/u01/app/oracle/product/10.2.0/db_1/jlib/ldapjclnt10.jar:/u01/app/oracle/product/10.2.0/db_1/oui/jlib/OraInstaller.jar:/u01/app/oracle/product/10.2.0/db_1/lib/xmlparserv2.jar oracle.net.ca.NetCA /orahome /u01/app/oracle/product/10.2.0/db_1 /orahnam OraDbHome1 /instype typical /inscomp client,oraclenet,javavm,server,ano /insprtcl tcp /cfg local /authadp NO_VALUE /nodeinfo NO_VALUE /responseFile /u01/app/oracle/product/10.2.0/db_1/network/install/netca_typ.rsp /silent
    Command = /u01/app/oracle/product/10.2.0/db_1/jdk/jre//bin/java ... has failed
    Execution Error : Exception in thread "main" java.lang.UnsatisfiedLinkError: /u01/app/oracle/product/10.2.0/db_1/jdk/jre/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory
         at java.lang.ClassLoader$NativeLibrary.load(Native Method)
         at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1586)
         at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1503)
         at java.lang.Runtime.loadLibrary0(Runtime.java:788)
         at java.lang.System.loadLibrary(System.java:834)
         at sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:50)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.awt.NativeLibLoader.loadLibraries(NativeLibLoader.java:38)
         at sun.awt.DebugHelper.<clinit>(DebugHelper.java:29)
         at java.awt.Component.<clinit>(Component.java:506)
    Configuration assistant "Oracle Net Configuration Assistant" failed
    3. I am found libXp.so.6 in /u01/app/oracle/product/10.2.0/db_1/lib/stubs
    4. How to point java to libXp.so.6 ?

    ldd libawt.so
         libmlib_image.so => not found
         libjvm.so => not found
         libXp.so.6 => not found
         libXt.so.6 => not found
         libXext.so.6 => not found
         libXtst.so.6 => not found
         libX11.so.6 => not found
         libm.so.6 => /lib/tls/libm.so.6 (0x40312000)
         libdl.so.2 => /lib/tls/libdl.so.2 (0x40334000)
         libjava.so => not found
         libc.so.6 => /lib/tls/libc.so.6 (0x40337000)
         /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x80000000)
    Looking as oracle's bug for installation in silent mode.

  • Install XE Univ  in silent mode

    I tried to install XE in silent mode
    I used OracleXEUniv.exe.
    Then line command :
    c:\OracleXEUniv.exe /s /f1"c:\OracleXE-install.iss" /f2"c:\install.log"
    The installation abort
    When i execute the command :
    c:\OracleXEUniv.exe /?
    the message box said
    /L language
    /S Hide Dialog Box
    To activate silent mode
    /S /v/qn
    /V MsiExec.exe parameters
    /UA
    /UW
    /UM
    What i use this command line?
    PS: SO Windows XP and Windows Vista
    Thanks

    OK, I tryed now XE silent install on Vista Ultimate SP1 and it worked like a charm.
    alet_xe.log:
    Dump file j:\oraclexe\app\oracle\admin\xe\bdump\alert_xe.log
    Wed Oct 01 22:27:14 2008
    ORACLE V10.2.0.1.0 - Production vsnsta=0
    vsnsql=14 vsnxtr=3
    Windows NT Version V6.0 Service Pack 1
    CPU                 : 2 - type 586, 2 Physical Cores
    Process Affinity    : 0x00000000
    Memory (Avail/Total): Ph:1640M/3326M, Ph+PgF:5143M/6872M, VA:1930M/2047M
    Wed Oct 01 22:27:14 2008
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Shared memory segment for instance monitoring created
    Picked latch-free SCN scheme 2
    Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =10
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.1.0.
    System parameters with non-default values:
      sessions                 = 49
      sga_target               = 805306368
      control_files            = J:\ORACLEXE\ORADATA\XE\CONTROL.DBF
      compatible               = 10.2.0.1.0
      db_recovery_file_dest    = J:\oraclexe\app\oracle\flash_recovery_area
      db_recovery_file_dest_size= 10737418240
      undo_management          = AUTO
      undo_tablespace          = UNDO
      remote_login_passwordfile= EXCLUSIVE
      dispatchers              = (PROTOCOL=TCP) (SERVICE=XEXDB)
      shared_servers           = 4
      job_queue_processes      = 4
      audit_file_dest          = J:\ORACLEXE\APP\ORACLE\ADMIN\XE\ADUMP
      background_dump_dest     = J:\ORACLEXE\APP\ORACLE\ADMIN\XE\BDUMP
      user_dump_dest           = J:\ORACLEXE\APP\ORACLE\ADMIN\XE\UDUMP
      core_dump_dest           = J:\ORACLEXE\APP\ORACLE\ADMIN\XE\CDUMP
      db_name                  = XE
      open_cursors             = 300
      os_authent_prefix        =
      pga_aggregate_target     = 268435456
    PMON started with pid=2, OS id=6136
    PSP0 started with pid=3, OS id=6012
    MMAN started with pid=4, OS id=5396
    DBW0 started with pid=5, OS id=5952
    LGWR started with pid=6, OS id=2612
    CKPT started with pid=7, OS id=5832
    SMON started with pid=8, OS id=4168
    RECO started with pid=9, OS id=6064
    CJQ0 started with pid=10, OS id=5944
    MMON started with pid=11, OS id=5852
    Wed Oct 01 22:27:14 2008
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    Wed Oct 01 22:27:14 2008
    starting up 4 shared server(s) ...
    Oracle Data Guard is not available in this edition of Oracle.
    MMNL started with pid=12, OS id=5988
    Wed Oct 01 22:27:16 2008
    The input backup piece J:\ORACLEXE\APP\ORACLE\PRODUCT\10.2.0\SERVER\CONFIG\SEEDDB\EXPRESS.DFB is in compressed format.
    Wed Oct 01 22:27:30 2008
    Full restore complete of datafile 2 to datafile copy J:\ORACLEXE\ORADATA\XE\UNDO.DBF.  Elapsed time: 0:00:14
      checkpoint is 213418
    Full restore complete of datafile 4 to datafile copy J:\ORACLEXE\ORADATA\XE\USERS.DBF.  Elapsed time: 0:00:16
      checkpoint is 213418
    Wed Oct 01 22:27:58 2008
    Full restore complete of datafile 1 to datafile copy J:\ORACLEXE\ORADATA\XE\SYSTEM.DBF.  Elapsed time: 0:00:42
      checkpoint is 213418
    Full restore complete of datafile 3 to datafile copy J:\ORACLEXE\ORADATA\XE\SYSAUX.DBF.  Elapsed time: 0:00:47
      checkpoint is 213418
    Wed Oct 01 22:28:04 2008
    Create controlfile reuse set database "XE"
    MAXINSTANCES 8
    MAXLOGHISTORY 1
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    Datafile
    'J:\oraclexe\oradata\XE\system.dbf',
    'J:\oraclexe\oradata\XE\undo.dbf',
    'J:\oraclexe\oradata\XE\sysaux.dbf',
    'J:\oraclexe\oradata\XE\users.dbf'
    LOGFILE
    GROUP 1 SIZE 51200K,
    GROUP 2 SIZE 51200K,
    RESETLOGS
    WARNING: Default Temporary Tablespace not specified in CREATE DATABASE command
    Default Temporary Tablespace will be necessary for a locally managed database in future release
    Setting recovery target incarnation to 1
    Wed Oct 01 22:28:04 2008
    Successful mount of redo thread 1, with mount id 2548127028
    Wed Oct 01 22:28:04 2008
    Completed: Create controlfile reuse set database "XE"
    MAXINSTANCES 8
    MAXLOGHISTORY 1
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    Datafile
    'J:\oraclexe\oradata\XE\system.dbf',
    'J:\oraclexe\oradata\XE\undo.dbf',
    'J:\oraclexe\oradata\XE\sysaux.dbf',
    'J:\oraclexe\oradata\XE\users.dbf'
    LOGFILE
    GROUP 1 SIZE 51200K,
    GROUP 2 SIZE 51200K,
    RESETLOGS
    Shutting down instance: further logons disabled
    Wed Oct 01 22:28:04 2008
    Stopping background process MMNL
    Wed Oct 01 22:28:05 2008
    Stopping background process CJQ0
    Wed Oct 01 22:28:05 2008
    Stopping background process MMON
    Wed Oct 01 22:28:05 2008
    Shutting down instance (immediate)
    License high water mark = 1
    Wed Oct 01 22:28:05 2008
    Stopping Job queue slave processes
    Wed Oct 01 22:28:05 2008
    Job queue slave processes stopped
    Waiting for dispatcher 'D000' to shutdown
    All dispatchers and shared servers shutdown
    Wed Oct 01 22:28:07 2008
    ALTER DATABASE CLOSE NORMAL
    ORA-1109 signalled during: ALTER DATABASE CLOSE NORMAL...
    Wed Oct 01 22:28:07 2008
    ALTER DATABASE DISMOUNT
    Completed: ALTER DATABASE DISMOUNT
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    Wed Oct 01 22:28:10 2008
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 2
    Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =10
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.1.0.
    System parameters with non-default values:
      sessions                 = 49
      sga_target               = 805306368
      control_files            = J:\ORACLEXE\ORADATA\XE\CONTROL.DBF
      compatible               = 10.2.0.1.0
      db_recovery_file_dest    = J:\oraclexe\app\oracle\flash_recovery_area
      db_recovery_file_dest_size= 10737418240
      undo_management          = AUTO
      undo_tablespace          = UNDO
      remote_login_passwordfile= EXCLUSIVE
      dispatchers              = (PROTOCOL=TCP) (SERVICE=XEXDB)
      shared_servers           = 4
      audit_file_dest          = J:\ORACLEXE\APP\ORACLE\ADMIN\XE\ADUMP
      background_dump_dest     = J:\ORACLEXE\APP\ORACLE\ADMIN\XE\BDUMP
      user_dump_dest           = J:\ORACLEXE\APP\ORACLE\ADMIN\XE\UDUMP
      core_dump_dest           = J:\ORACLEXE\APP\ORACLE\ADMIN\XE\CDUMP
      db_name                  = XE
      open_cursors             = 300
      os_authent_prefix        =
      pga_aggregate_target     = 268435456
    PMON started with pid=2, OS id=5932
    MMAN started with pid=4, OS id=4304
    DBW0 started with pid=5, OS id=3044
    CKPT started with pid=7, OS id=3456
    RECO started with pid=9, OS id=4308
    Wed Oct 01 22:28:11 2008
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    Wed Oct 01 22:28:11 2008
    starting up 4 shared server(s) ...
    Oracle Data Guard is not available in this edition of Oracle.
    PSP0 started with pid=3, OS id=4380
    LGWR started with pid=6, OS id=4432
    SMON started with pid=8, OS id=4256
    MMON started with pid=10, OS id=4292
    Wed Oct 01 22:28:13 2008
    Create controlfile reuse set database "XE"
    MAXINSTANCES 8
    MAXLOGHISTORY 1
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    Datafile
    'J:\oraclexe\oradata\XE\system.dbf',
    'J:\oraclexe\oradata\XE\undo.dbf',
    'J:\oraclexe\oradata\XE\sysaux.dbf',
    'J:\oraclexe\oradata\XE\users.dbf'
    LOGFILE
    GROUP 1 SIZE 51200K,
    GROUP 2 SIZE 51200K,
    RESETLOGS
    Wed Oct 01 22:28:13 2008
    WARNING: Default Temporary Tablespace not specified in CREATE DATABASE command
    Default Temporary Tablespace will be necessary for a locally managed database in future release
    MMNL started with pid=11, OS id=5912
    Setting recovery target incarnation to 1
    Wed Oct 01 22:28:13 2008
    Successful mount of redo thread 1, with mount id 2548089405
    Wed Oct 01 22:28:13 2008
    Completed: Create controlfile reuse set database "XE"
    MAXINSTANCES 8
    MAXLOGHISTORY 1
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    Datafile
    'J:\oraclexe\oradata\XE\system.dbf',
    'J:\oraclexe\oradata\XE\undo.dbf',
    'J:\oraclexe\oradata\XE\sysaux.dbf',
    'J:\oraclexe\oradata\XE\users.dbf'
    LOGFILE
    GROUP 1 SIZE 51200K,
    GROUP 2 SIZE 51200K,
    RESETLOGS
    Wed Oct 01 22:28:13 2008
    Stopping background process MMNL
    Wed Oct 01 22:28:14 2008
    Stopping background process MMON
    Starting background process MMON
    Starting background process MMNL
    Wed Oct 01 22:28:14 2008
    ALTER SYSTEM enable restricted session;
    Wed Oct 01 22:28:14 2008
    alter database "XE" open resetlogs
    Wed Oct 01 22:28:14 2008
    RESETLOGS after incomplete recovery UNTIL CHANGE 213418
    Wed Oct 01 22:28:14 2008
    Errors in file j:\oraclexe\app\oracle\admin\xe\udump\xe_ora_160.trc:
    ORA-00313: Member von Log-Gruppe 1 (Thread 1) konnten nicht geoffnet werden
    db_recovery_file_dest_size of 10240 MB is 0.49% used. This is a
    user-specified limit on the amount of space that will be used by this
    database for recovery-related files, and does not reflect the amount of
    space available in the underlying filesystem or ASM diskgroup.
    Wed Oct 01 22:28:15 2008
    Errors in file j:\oraclexe\app\oracle\admin\xe\udump\xe_ora_160.trc:
    ORA-00313: Member von Log-Gruppe 2 (Thread 1) konnten nicht geoffnet werden
    MMON started with pid=10, OS id=4416
    MMNL started with pid=11, OS id=4420
    Wed Oct 01 22:28:15 2008
    Errors in file j:\oraclexe\app\oracle\admin\xe\udump\xe_ora_160.trc:
    ORA-00313: Member von Log-Gruppe 3 (Thread 1) konnten nicht geoffnet werden
    Wed Oct 01 22:28:16 2008
    Setting recovery target incarnation to 2
    Wed Oct 01 22:28:17 2008
    Assigning activation ID 2548089405 (0x97e0c23d)
    Thread 1 opened at log sequence 1
      Current log# 3 seq# 1 mem# 0: J:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ONLINELOG\O1_MF_3_4G7QBZTO_.LOG
    Successful open of redo thread 1
    Wed Oct 01 22:28:17 2008
    SMON: enabling cache recovery
    Wed Oct 01 22:28:18 2008
    Successfully onlined Undo Tablespace 1.
    Dictionary check beginning
    Tablespace 'TEMP' #3 found in data dictionary,
    but not in the controlfile. Adding to controlfile.
    Dictionary check complete
    Wed Oct 01 22:28:18 2008
    SMON: enabling tx recovery
    Wed Oct 01 22:28:18 2008
    WARNING: The following temporary tablespaces contain no files.
             This condition can occur when a backup controlfile has
             been restored.  It may be necessary to add files to these
             tablespaces.  That can be done using the SQL statement:
             ALTER TABLESPACE <tablespace_name> ADD TEMPFILE
             Alternatively, if these temporary tablespaces are no longer
             needed, then they can be dropped.
               Empty temporary tablespace: TEMP
    Updating character set in controlfile to AL32UTF8
    WARNING: Files may exists in db_recovery_file_dest
    that are not known to the database. Use the RMAN command
    CATALOG RECOVERY AREA to re-catalog any such files.
    One of the following events caused this:
    1. A backup controlfile was restored.
    2. A standby controlfile was restored.
    3. The controlfile was re-created.
    4. db_recovery_file_dest had previously been enabled and
       then disabled.
    replication_dependency_tracking turned off (no async multimaster replication found)
    Starting background process QMNC
    QMNC started with pid=18, OS id=4444
    Wed Oct 01 22:28:20 2008
    LOGSTDBY: Validating controlfile with logical metadata
    Wed Oct 01 22:28:20 2008
    LOGSTDBY: Validation complete
    Global Name changed to XE
    Completed: alter database "XE" open resetlogs
    Wed Oct 01 22:28:21 2008
    alter database rename global_name to "XE"
    Completed: alter database rename global_name to "XE"
    Wed Oct 01 22:28:21 2008
    Thread 1 advanced to log sequence 2
      Current log# 1 seq# 2 mem# 0: J:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ONLINELOG\O1_MF_1_4G7QBYQV_.LOG
    Wed Oct 01 22:28:21 2008
    alter database drop logfile group 3
    Wed Oct 01 22:28:21 2008
    Deleted Oracle managed file J:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ONLINELOG\O1_MF_3_4G7QBZTO_.LOG
    Completed: alter database drop logfile group 3
    Wed Oct 01 22:28:21 2008
    ALTER TABLESPACE TEMP ADD TEMPFILE 'J:\oraclexe\oradata\XE\temp.dbf' SIZE 20480K REUSE AUTOEXTEND ON NEXT 640K MAXSIZE UNLIMITED
    Completed: ALTER TABLESPACE TEMP ADD TEMPFILE 'J:\oraclexe\oradata\XE\temp.dbf' SIZE 20480K REUSE AUTOEXTEND ON NEXT 640K MAXSIZE UNLIMITED
    Wed Oct 01 22:28:23 2008
    ALTER SYSTEM disable restricted session;
    Wed Oct 01 22:28:26 2008
    Starting background process CJQ0
    CJQ0 started with pid=21, OS id=6132
    Wed Oct 01 22:28:34 2008
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2209K exceeds notification threshold (2048K)
    KGL object name :XDB.XDbD/PLZ01TcHgNAgAIIegtw==
    Wed Oct 01 22:28:35 2008
    Shutting down instance: further logons disabled
    Wed Oct 01 22:28:36 2008
    Stopping background process QMNC
    Wed Oct 01 22:28:37 2008
    Stopping background process CJQ0
    Wed Oct 01 22:28:38 2008
    Stopping background process MMNL
    Wed Oct 01 22:28:39 2008
    Stopping background process MMON
    Wed Oct 01 22:28:40 2008
    Shutting down instance (immediate)
    License high water mark = 2
    Waiting for dispatcher 'D000' to shutdown
    All dispatchers and shared servers shutdown
    Wed Oct 01 22:28:42 2008
    ALTER DATABASE CLOSE NORMAL
    Wed Oct 01 22:28:42 2008
    SMON: disabling tx recovery
    SMON: disabling cache recovery
    Wed Oct 01 22:28:42 2008
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    Thread 1 closed at log sequence 2
    Successful close of redo thread 1
    Wed Oct 01 22:28:42 2008
    Completed: ALTER DATABASE CLOSE NORMAL
    Wed Oct 01 22:28:42 2008
    ALTER DATABASE DISMOUNT
    Completed: ALTER DATABASE DISMOUNT
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    Wed Oct 01 22:28:46 2008
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 2
    Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =10
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.1.0.
    System parameters with non-default values:
      sessions                 = 49
      spfile                   = J:\ORACLEXE\APP\ORACLE\PRODUCT\10.2.0\SERVER\DBS\SPFILEXE.ORA
      sga_target               = 805306368
      control_files            = J:\ORACLEXE\ORADATA\XE\CONTROL.DBF
      compatible               = 10.2.0.1.0
      db_recovery_file_dest    = J:\oraclexe\app\oracle\flash_recovery_area
      db_recovery_file_dest_size= 10737418240
      undo_management          = AUTO
      undo_tablespace          = UNDO
      remote_login_passwordfile= EXCLUSIVE
      dispatchers              = (PROTOCOL=TCP) (SERVICE=XEXDB)
      shared_servers           = 4
      job_queue_processes      = 4
      audit_file_dest          = J:\ORACLEXE\APP\ORACLE\ADMIN\XE\ADUMP
      background_dump_dest     = J:\ORACLEXE\APP\ORACLE\ADMIN\XE\BDUMP
      user_dump_dest           = J:\ORACLEXE\APP\ORACLE\ADMIN\XE\UDUMP
      core_dump_dest           = J:\ORACLEXE\APP\ORACLE\ADMIN\XE\CDUMP
      db_name                  = XE
      open_cursors             = 300
      os_authent_prefix        =
      pga_aggregate_target     = 268435456
    PMON started with pid=2, OS id=3772
    MMAN started with pid=4, OS id=5016
    DBW0 started with pid=5, OS id=5056
    SMON started with pid=8, OS id=5044
    MMON started with pid=11, OS id=3404
    PSP0 started with pid=3, OS id=5000
    LGWR started with pid=6, OS id=5228
    RECO started with pid=9, OS id=4664
    Wed Oct 01 22:28:47 2008
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    Wed Oct 01 22:28:47 2008
    starting up 4 shared server(s) ...
    CKPT started with pid=7, OS id=204
    CJQ0 started with pid=10, OS id=3072
    Oracle Data Guard is not available in this edition of Oracle.
    Wed Oct 01 22:28:50 2008
    ALTER DATABASE   MOUNT
    MMNL started with pid=12, OS id=2096
    Wed Oct 01 22:28:54 2008
    Setting recovery target incarnation to 2
    Wed Oct 01 22:28:54 2008
    Successful mount of redo thread 1, with mount id 2548114530
    Wed Oct 01 22:28:54 2008
    Database mounted in Exclusive Mode
    Completed: ALTER DATABASE   MOUNT
    Wed Oct 01 22:28:55 2008
    ALTER DATABASE OPEN
    Wed Oct 01 22:28:55 2008
    Thread 1 opened at log sequence 2
      Current log# 1 seq# 2 mem# 0: J:\ORACLEXE\APP\ORACLE\FLASH_RECOVERY_AREA\XE\ONLINELOG\O1_MF_1_4G7QBYQV_.LOG
    Successful open of redo thread 1
    Wed Oct 01 22:28:55 2008
    SMON: enabling cache recovery
    Wed Oct 01 22:28:56 2008
    Successfully onlined Undo Tablespace 1.
    Wed Oct 01 22:28:56 2008
    SMON: enabling tx recovery
    Wed Oct 01 22:28:56 2008
    Database Characterset is AL32UTF8
    replication_dependency_tracking turned off (no async multimaster replication found)
    Starting background process QMNC
    QMNC started with pid=19, OS id=4644
    Wed Oct 01 22:28:59 2008
    Completed: ALTER DATABASE OPEN
    Wed Oct 01 22:29:00 2008
    db_recovery_file_dest_size of 10240 MB is 0.98% used. This is a
    user-specified limit on the amount of space that will be used by this
    database for recovery-related files, and does not reflect the amount of
    space available in the underlying filesystem or ASM diskgroup.
    Wed Oct 01 22:29:07 2008
    Memory Notification: Library Cache Object loaded into SGA
    Heap size 2209K exceeds notification threshold (2048K)
    KGL object name :XDB.XDbD/PLZ01TcHgNAgAIIegtw== So don't give up - I'm sure defititely that only Vista configuration can be a problem...
    HTH

Maybe you are looking for

  • Can you download dvds to your laptop and put them on your i pod touch??

    does anyone know if you can download dvds onto your ipod touch without going onto the app store

  • Need urgent help with preview (not sure where this goes)

    Hi, Ok so I have a Mac OSX and I was editing one of the best pictures I have ever drawn, I have spent weeks working on it! I was absolutely finished it and admiring it in Preview and I was using Sketchbook Pro to edit it. Suddenly Sketchbook Pro quit

  • SQL Server Service can't start.

    I was try start SQL Server Service in SQL Server Configuration Manager and it prompt out error 'The request failed or the service did not respond in a timely fashion.Consult the event log or other applicable error logs for details.'  I was try set HK

  • How to fetch screen field in HR abap

    hi friend,   I need to fetch a screen field q0128-tdline. And the field should be included in payslip. Is there any user exit to proceed with this.Please reply ASAP. Thanks and Regards K.karthikeyan.

  • Using same BS name in all XI env.

    Hello All, I need advice to manage XI software logistics. I have 3 XI environments. I used to do export and import IR objects and configure my scenarios manually. Now I am thinking to take export of my configuration objects to save my time. I have to