JSK 11.1.18 not starting two instances simultaniously

Hi,
I had downloaded the webcenter site JSK 11.1.1.8 form oracle support and installed two instances one with samples and one with out samples (different ports) .
But when i try to start the JSK, one is running (one i am starting first) and other is failing always.
Below is the error
     oracle.fatwire.sites.jsk.utlities.httpRequestBroker:callHTTP  -  Test to http://localhost:9180/cs/CatalogManager?ftcmd=pingdb:9180 failed
[Thread-4] DEBUG  - [Thread-4] 129:oracle.fatwire.sites.jsk.utlities.httpRequestBroker:callHTTP  - java.net.SocketTimeoutException: connect timed out
[Thread-4] TRACE  - [Thread-4] 92:oracle.fatwire.sites.jsk.uiElements.jskURLReachableThread:run  - failed to fine required text, server not running      
Please let me know if any come across this issue and any found solution
Thanks

SEVERE: StandardServer.await: create[localhost:9005]:
java.net.BindException: Cannot assign requested address: JVM_Bind
this is most likely related to another process using the same port as the one of the JSK . On Windows, run the command: 
netstat -a -n | grep "LIST"
And it should list anything there that's blocking the port.
You can configure the JSK to use a different port if needed.
Regards,
Pietro

Similar Messages

  • Can not get two instances to join same cluster even on same machine

    On a RedHat Linux box, I have failed to get two instances of coherence to join the same cluster. I have managed to get the muticast test tool to show that packets are being sent and received. To do this, I had to:
    java -cp bin/tangasol.jar -Djava.net.preferIPv4Stack=true com.tangosol.net.MulticastTest
    Wed Apr 15 21:02:45 WET 2009: Sent packet 1.
    Wed Apr 15 21:02:45 WET 2009: Received test packet 1 from self (sent 7ms ago).
    Wed Apr 15 21:02:47 WET 2009: Sent packet 2.
    Wed Apr 15 21:02:47 WET 2009: Received test packet 2 from self
    Wed Apr 15 21:02:49 WET 2009: Sent packet 3.
    Wed Apr 15 21:02:49 WET 2009: Received test packet 3 from self (sent 1ms ago).
    Wed Apr 15 21:02:51 WET 2009: Sent packet 4.
    Wed Apr 15 21:02:51 WET 2009: Received test packet 4 from self
    However, I could not get the following to show that two instances are joining the same cluster... When I start to instances, both of them create a new cluster with only one member in each.
    java -Djava.net.preferIPv4Stack=true -jar lib/coherence.jar
    and obviously, when I try to start two instances of the sample application, I get the same problem.
    java -cp ./lib/coherence.jar:./lib/tangosol.jar:./examples/java -Djava.net.preferIPv4Stack=true -Dtangosol.coherence.localhost=172.16.27.10 -Dtangosol.coherence.localport=8188 -Dtangosol.coherence.cacheconfig=/cache/explore-config.xml com.tangosol.examples.explore.SimpleCacheExplorer

    Thanks for that... I ran:
    jdk1.6.0_13/bin/java -Dtangosol.coherence.log.level=6 -Dtangosol.coherence.log=/my1.log -Dtangosol.ccacheconfig=/cache/explore-config.xml -Djava.net.preferIPv4Stack=true -jar lib/coherence.jar
    and then
    jdk1.6.0_13/bin/java -Dtangosol.coherence.log.level=6 -Dtangosol.coherence.log=/my2.log -Dtangosol.ccacheconfig=/cache/explore-config.xml -Djava.net.preferIPv4Stack=true -jar lib/coherence.jar
    from the same machine and get the following from the log file of the second run (my2.log)
    Oracle Coherence Version 3.4.2/411
    Grid Edition: Development mode
    Copyright (c) 2000-2009 Oracle. All rights reserved.
    2009-04-16 06:53:11.574/0.625 Oracle Coherence GE 3.4.2/411 <Warning> (thread=main, member=n/a): UnicastUdpSocket failed to set receive buffer size to 1428 packets (2096304 bytes); actual size is 89 packets (131071 bytes). Consult your OS documentation regarding increasing the maximum socket buffer size. Proceeding with the actual value may cause sub-optimal performance.
    2009-04-16 06:53:11.660/0.711 Oracle Coherence GE 3.4.2/411 <D5> (thread=Cluster, member=n/a): Service Cluster joined the cluster with senior service member n/a
    2009-04-16 06:53:14.892/3.943 Oracle Coherence GE 3.4.2/411 <Info> (thread=Cluster, member=n/a): Created a new cluster "cluster:0x2FFB" with Member(Id=1, Timestamp=2009-04-16 06:53:11.58, Address=192.168.1.7:8089, MachineId=26887, Location=process:3514, Role=CoherenceConsole, Edition=Grid Edition, Mode=Development, CpuCount=8, SocketCount=2) UID=0xC0A8010700000120ADB3521C69071F99
    SafeCluster: Name=cluster:0x2FFB
    Group{Address=224.3.4.2, Port=34411, TTL=4}
    MasterMemberSet
    ThisMember=Member(Id=1, Timestamp=2009-04-16 06:53:11.58, Address=192.168.1.7:8089, MachineId=26887, Location=process:3514, Role=CoherenceConsole)
    OldestMember=Member(Id=1, Timestamp=2009-04-16 06:53:11.58, Address=192.168.1.7:8089, MachineId=26887, Location=process:3514, Role=CoherenceConsole)
    ActualMemberSet=MemberSet(Size=1, BitSetCount=2
    Member(Id=1, Timestamp=2009-04-16 06:53:11.58, Address=192.168.1.7:8089, MachineId=26887, Location=process:3514, Role=CoherenceConsole)
    RecycleMillis=120000
    RecycleSet=MemberSet(Size=0, BitSetCount=0
    Services
    TcpRing{TcpSocketAccepter{State=STATE_OPEN, ServerSocket=192.168.1.7:8089}, Connections=[]}
    ClusterService{Name=Cluster, State=(SERVICE_STARTED, STATE_JOINED), Id=0, Version=3.4, OldestMemberId=1}
    the contents of the xml file are:
    <?xml version="1.0"?>
    <!DOCTYPE cache-config SYSTEM "cache-config.dtd">
    <cache-config>
    <caching-scheme-mapping>
    <!--
    Caches with any name will be created as default replicated.
    -->
    <cache-mapping>
    <cache-name>*</cache-name>
    <scheme-name>default-replicated</scheme-name>
    </cache-mapping>
    </caching-scheme-mapping>
    <caching-schemes>
    <!--
    Default Replicated caching scheme.
    -->
    <replicated-scheme>
    <scheme-name>default-replicated</scheme-name>
    <service-name>ReplicatedCache</service-name>
    <backing-map-scheme>
    <class-scheme>
    <scheme-ref>default-backing-map</scheme-ref>
    </class-scheme>
    </backing-map-scheme>
    </replicated-scheme>
    <!--
    Default backing map scheme definition used by all
    The caches that do not require any eviction policies
    -->
    <class-scheme>
    <scheme-name>default-backing-map</scheme-name>
    <class-name>com.tangosol.util.SafeHashMap</class-name>
    </class-scheme>
    </caching-schemes>
    </cache-config>

  • Could not start OC4J instance.. Exception in thread "OC4J Launcher"

    Hi All,
    This is Kumar and I am using Oracle Enterprise Manager 10g which is installed on a Linux box. Recently, I found that I could not start OC4J instance either by giving ./opmnctl startall command or from EM console. Below is the error message from ./opmn/log/ folder.
    11/03/28 10:03:47 Start process
    11/03/28 10:03:49 Error writing server.xml
    11/03/28 10:03:49 Exception in thread "OC4J Launcher" java.lang.OutOfMemoryError: Java heap space
    11/03/28 10:03:49      at oracle.ias.container.timer.TimerEntry.readObjBytes(TimerEntry.java:274)
    11/03/28 10:03:49      at oracle.ias.container.timer.TimerEntry.read(TimerEntry.java:248)
    11/03/28 10:03:49      at oracle.ias.container.timer.internal.TimeBasedEntry.readEntry(TimeBasedEntry.java:253)
    11/03/28 10:03:49      at oracle.ias.container.timer.Timer.readObject(Timer.java:489)
    11/03/28 10:03:49      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    11/03/28 10:03:49      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    11/03/28 10:03:49      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    11/03/28 10:03:49      at java.lang.reflect.Method.invoke(Method.java:597)
    11/03/28 10:03:49      at java.io.ObjectStreamClass.invokeReadObject(ObjectStreamClass.java:974)
    11/03/28 10:03:49      at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1849)
    11/03/28 10:03:49      at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1753)
    11/03/28 10:03:49      at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
    11/03/28 10:03:49      at java.io.ObjectInputStream.readObject(ObjectInputStream.java:351)
    11/03/28 10:03:49      at oracle.ias.container.timer.internal.FileTimerStore.readPersistentStore(FileTimerStore.java:191)
    11/03/28 10:03:49      at oracle.ias.container.timer.internal.TimerFactory.readPersistentStore(TimerFactory.java:103)
    11/03/28 10:03:49      at oracle.ias.container.timer.TimerService.schedulePersistedTimers(TimerService.java:655)
    11/03/28 10:03:49      at oracle.ias.container.timer.TimerService.initialize(TimerService.java:473)
    11/03/28 10:03:49      at oracle.ias.container.ContainerServiceManager.addService(ContainerServiceManager.java:209)
    11/03/28 10:03:49      at com.evermind.server.ApplicationServer.startContainerServices(ApplicationServer.java:911)
    11/03/28 10:03:49      at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:952)
    11/03/28 10:03:49      at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:131)
    11/03/28 10:03:49      at java.lang.Thread.run(Thread.java:619)
    11/03/28 10:03:49 Shutting down OC4J...
    To resolve the issue, I have tried changing the opmn.xml file (from $ORACLE_HOME/opmn/conf/opmn.xml) such that, for the failed OC4J instance -XX:MaxPermSize=256m (old value was 128m).
    Though I made the modification and re-start the OC4J instance, I could see the same error and behavior.
    Can anyone help me to resolve this issue please?
    Regards,
    Kumar

    This is bit strange. It should work. I tested and works fine for me.
    Can you remove the entry from opmn.xml and make sure no typo in server.xml and try again. You might want to reload OPMN (opmnctl reload) and then try restarting OC4J (opmnctl startproc ias-component=OC4J).
    Note that value (-DcheckForUpdates) set in opmn.xml overrides the value set in server.xml:
    http://download.oracle.com/docs/cd/B32110_01/web.1013/b28951/autodeploy.htm#CHDIBFAH
    Thanks
    Shail

  • Can not start SAP instance after change the profile

    Dear all
    We use system copy to build SAP system.
    Source
    Ecc 6.0(64 bit)
    Windows Server 2008 SP2
    SQL Server 2008 SP2
    Target
    Ecc 6.0(64 bit)
    Windows Server 2008 SP2
    SQL Server 2008 SP2
    In target system, we want to use the instance profile as source system,
    but after copy from source system we find that if parameter em address_space_mb = 512 in the profile,
    we can not start SAP instance.
    Could anyone explain it?
    Best regards
    Shirley

    Hi Shirley,
    I assume the hardware is less on the target than on the source or they are different at least in terms of hardware specs
    If the system is not starting, check the dev_disp.log, the stderr* files, and the dev_w0 log from the work directory to find the exact error. Does the system start if you increase or decrease this value?
    Regards,
    Paul

  • How to start two instances of InDesign server independently?

    Hello,
    we have a multi instance InDesign server installation.
    And we are able to start two instances of InDesign server on different ports.
    But now we would like to use different plugins for different instances.
    Is it possible somehow? For example install InDesign server two times in different folders or something like that?
    Thank you in advance.

    InDesign plugin loading can be controlled via a file "PluginConfig.txt", refer to search for details.
    InDesign Server has separate configuration folders per instance/configuration.
    *If* the search path for the PluginConfig.txt falls into this folder, that would be the easiest approach.
    I don't have a server installation with me to try it out.
    Dirk

  • OIm 11g is not starting on instance 2.

    Hi all,
    We have installed OIm as instance 2 to pointing same DB which is used by instance 1, ad got the following error, when we start/restart the oim server.
    Note: two instalces pointed to same DB and Schema.
    Memory leaks and/or unexpected behaviour may occur if the automatic initialization is performed improperly.
    This message may be avoided by performing initADFContext before using getCurrent().
    To see the stack trace for thread that is initializing this, set the logging level of oracle.adf.share.ADFContext to FINEST>
    <Oct 21, 2011 2:07:20 AM EDT> <Error> <Deployer> <BEA-149205> <Failed to initialize the application 'oim [Version=11.1.1.3.0]' due to error oracle.iam.platform.utils.OIMAppInitializationException:
    OIM application intialization failed because of the following reasons:
    Password for .xldatabasekey is not seeded in CSF.
    oracle.iam.platform.utils.OIMAppInitializationException:
    OIM application intialization failed because of the following reasons:
    Password for .xldatabasekey is not seeded in CSF.
    at oracle.iam.platform.utils.OIMAppInitializationListener.preStart(OIMAppInitializationListener.java:145)
    at weblogic.application.internal.flow.BaseLifecycleFlow$PreStartAction.run(BaseLifecycleFlow.java:282)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.application.internal.flow.BaseLifecycleFlow$LifecycleListenerAction.invoke(BaseLifecycleFlow.java:199)
    Truncated. see log file for complete stacktrace
    Caused By: oracle.iam.platform.utils.OIMAppInitializationException:
    OIM application intialization failed because of the following reasons:
    Password for .xldatabasekey is not seeded in CSF.
    at oracle.iam.platform.utils.OIMAppInitializationListener.preStart(OIMAppInitializationListener.java:145)
    at weblogic.application.internal.flow.BaseLifecycleFlow$PreStartAction.run(BaseLifecycleFlow.java:282)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.application.internal.flow.BaseLifecycleFlow$LifecycleListenerAction.invoke(BaseLifecycleFlow.java:199)
    Truncated. see log file for complete stacktrace
    Thanks.

    Sorry for the short suggestion earlier, now that I re-read your issue.
    So when you installed the second OIM and pointed it to the existing encrypted database, then didn't it threw an error of the database being encrypted and for copying the .xldatabase key?
    Also I hope you gave the correct password for the database while configuring IDM.
    You can copy the .xldatabase key from your previous OIM instance 1 into the same location on OIM instance 2 and you should be good. Additionally check this for the location of the passwords: http://download.oracle.com/docs/cd/E17904_01/doc.1111/e14308/handlinglcm.htm#CIAFIFIB
    HTH,
    BB
    Edited by: bbagaria on Oct 21, 2011 2:03 PM

  • CRS Can not start instance PRKP-1001

    Hello
    I have a 2 node database and on the first node I can not start the instance using srvctl start instance it gives the following error: PRKP-1001 : Error starting instance htdb1 on node telepin1. When I start it using sqlplus it is ok.
    Can someone please explain?
    Thanks

    Do you also see CRS-0215? There's a known problem , when parameter sqlnet.inbound_connect_timeout is set in sqlnet.ora, it should be unset. Unfortunately the error is a little bit generic, if this parameter is currently not set, you have another problem.
    Werner

  • Unable to start 2nd instance in RAC

    Hi,
    i have a clustered environment, with 1 database consists of 3 instances. i recreated the spfile using init.ora file from other database to get the sga size etc... so far is fine, and able to start the database, and instance 1 is started and not starting the instance 2 and instance 3 for some reason...
    when connect to sqlplus /nolog and startup from there is says shared realm doesn't exist... i restarted the services from from computer management services...
    i dont understand why its doing this...
    checked the alert log says "specified value of sga_max_size is too small, bumping to 7922566298.
    can someone please help...
    i am on windows 32 bit, oracle 10g r2 version.

    789287 wrote:
    Aman,
    yes i am on virtualized 3 node system. I had a guess about it already and I happened to be right :) . Well the trouble is that you are trying to run a 3 node RAC on a 32 Bit windows machine which can chew a maximum of 3.2gb (if memory serves correctly) . So setting up such a large size per instance would not be a good thing. I normally suggest , if it's for learning purpose, to setup a db with not more than 300mb on a two node RAC VM's- per node gets an instance of 300mb. I would suggest that you bring the value to somewhat like this, let it start and see. Also check the alert logs of the instances.
    here is my sga details
    SQL> show sga
    Total System Global Area 7977566208 bytes
    Fixed Size 1309116 bytes
    Variable Size 1390413380 bytes
    Database Buffers 6553600000 bytes
    Redo Buffers 32243712 bytes
    how much should i reduce the sga, i am able tos start the database and 1 instance but not the other 2 instances.... please help.I am not sure about your set up so I shall say that set it up to not more 300mb and then retry. I hope it's not a production but a learning based cluster setup so it should not matter if we reduce the size of the sga, will it?
    Aman....

  • Distinguishing between two instances of the same portlet

    Hi Experts,
    Is there a way to distinguish between two instance of the same portlet in different browser windows?
    I'm looking for something like URL parameter passing, but just for portlets.
    The problem is, I want a way to pass a parameter between views in a portlet, but in such a way that if another browser window is opened and navigated to that portlet page, the parameter won't be the same. Perhaps I can explain better with this example:
    Page A has a portlet on it which has a textbox and 2 buttons - the first button stores the value in the textbox in the PortletRequest (or PortletURL) and if you click the second button the portlet navigates to a different view which displays the value. If I navigate with a second browser window to Page A, however, and only click the navigate button, that value which was stored by the first instance of the portlet will still be shown. I want them to be independent, I don't want changes in the one's PortletRequest to reflect in the other one's PortletRequest.
    Any ideas?
    Thanks,
    JP

    Why not use two instances of the same portlet, i.e. create two channels of the same portlet.
    The behave the same, have the same application logic, so all you need is to transfer informations between the two portlets.If you want this within user space use the portlet session, otherwise access the http session context /application context and store the data there.
    The behavior would be controlled by the portlet preferences, so channel a (instance 1) would be configured to run as controller and channel b (instance 2) would be configured as receiver.

  • Emergency - Sun ONE not starting

    Sun One has been running fine. I stopped the APP Server using the admin console, now when I try to start it I get the following error
    cannot start the instance domain1:server1
    server failed to start: abnormal process termination

    I have a same problem when I try to run appserver.
    ./asadmin start-domain
    Could not start the instance: domain1:admin-server
    server failed to start: abnormal subprocess termination
    Could not start the instance: domain1:server1
    server failed to start: abnormal subprocess termination
    Could not start the domain.
    Could not start one or more instances in the domain : domain1
    log:
    [20/10/2003:24:55:38 JST] IMQ_HOME=/opt/imq
    [20/10/2003:24:55:38 JST] IMQ_VARHOME=/var/opt/imq
    [20/10/2003:24:55:38 JST] Linux 2.4.20-20.7 i386 localhost.localdomain (1 cpu) r
    oot
    [20/10/2003:24:55:38 JST] Java Heap Size: max=196608k, current=8128k
    [20/10/2003:24:55:38 JST] Arguments: -name domain1_server1 -port 7676 -silent
    [20/10/2003:24:55:38 JST] [B1004]: Starting the portmapper service using tcp [ 7
    676, 50 ] with min threads 1 and max threads of 1
    [20/10/2003:24:55:38 JST] [B1060]: Loading persistent data...
    [20/10/2003:24:55:39 JST] [B1041]: Cluster initialization successful.
    [20/10/2003:24:55:39 JST] [B1013]: Auto Creation of Queues is Enabled
    [20/10/2003:24:55:39 JST] [B1004]: Starting the jms service using tcp(host = *,
    port=0, mode=dedicated) with min threads 10 and max threads of 1000
    [20/10/2003:24:55:39 JST] [B1004]: Starting the admin service using tcp(host = *, port=0, mode=dedicated) with min threads 4 and max threads of 10
    [20/10/2003:24:55:39 JST] [B1039]:Broker "[email protected]:7676" ready.
    [20/10/2003:24:55:41 JST] [B1065]: Accepting: [email protected]:32784->admin:32782
    . Count=1
    [20/10/2003:24:55:41 JST] [B1066]: Closing: [email protected]:32784->admin:32782
    . Count=0
    some help would be appliciated
    thanks,

  • Server does not start

    All,
    I've installed Sun One Studio 5 on a Windows 2000 Server SP3 machine.
    Whenever I try to start the Application Server I get the following error message in the console:
    Could not start the instance: domain1:admin-server
    server failed to start: abnormal subprocess termination
    Could not start the instance: domain1:server1
    server failed to start: abnormal subprocess termination
    Could not start one or more instances in the domain : domain1
    Could not start one or more domains
    Press any key to continue . . .The machine is a stand alone PC not connected to the network. I've got Oracle 9i installed on the same machine.
    BlackICE - personal firewall software - is installed on this machine as well. However, disabling it does not resolve the issue.
    I checked the following log directories for both admin and normal server are both empty:
    C:\Sun\studio5_se\appserver7\domains\domain1\admin-server\logs
    C:\Sun\studio5_se\appserver7\domains\domain1\server1\logsI would be grateful for any help.
    Regards,
    Marcin Konopka

    All,
    I've resolved the problem.
    I found the resolution in the "Getting Started" guide at http://docs.sun.com/source/816-7146-10/ch3-setting-environment.html:
    Windows Users : On some Windows 2000 systems, the Windows "net" command is not automatically made available to the environment through the system PATH environment variable. You must ensure this Windows utility is available in the environment in order to start and stop the application server. To determine whether or not the net command is available in your environment perform the following steps:
    Start a command console by selecting Start->Run....
    Enter the name "cmd" in the Open: text entry area and press the enter key or click on OK.
    As the console starts, type the command net at the command prompt. If the command is not found, then you need to modify the system PATH environment variable to include your [Windows install root]\system32; directory. For example, c:\WINNT\system32; If you are unfamiliar with setting the system's PATH environment variable, see the section below for detailed instructions.
    I added c:\WINNT\system32 to my PATH system variable and it started working fine.
    Regards,
    Marcin Konopka

  • Unable to start Oracle Instance via "dbstart"

    I've successfully loaded Oracle 11g on a Red Hat Enterprise Linux 5.3. I'm now trying to start the instance and database using the "dbstart". The command does not start the instance successfully or the database. I've pasted the results from the log below:
    /opt/oracle/product/11.1.0/db_1/bin/dbstart: Starting up database "TestDB"
    Sun Jul 12 16:07:22 EDT 2009
    Error 6 initializing SQL*Plus
    Message file sp1<lang>.msb not found
    SP2-0750: You may need to set ORACLE_HOME to your Oracle software directory
    /opt/oracle/product/11.1.0/db_1/bin/dbstart: line 113: [: 11: unary operator expected
    logger: No init file found for Database instance "TestDB".
    logger: Error: Database instance "TestDB" NOT started.
    I've been researching this all weekend and have not found a solution yet. Please point me in the right direction for a solution.
    My oratab file contains the path of the TestDB and is set to "Y". My profile is as follows:
    ORACLE_OWNER="oracle"
    ORACLE_HOME="/opt/oracle/product/11.1.0/db_1"
    ORACLE_HOME_LISTNER=$ORACLE_HOME
    Thanks

    Here are the results of the request:
    [root@cscdserver13 ~]# su - oracle
    [oracle@cscdserver13 ~]$ lsnrctl status
    LSNRCTL for Linux: Version 11.1.0.6.0 - Production on 13-JUL-2009 21:34:24
    Copyright (c) 1991, 2007, Oracle. All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    Linux Error: 111: Connection refused
    [oracle@cscdserver13 ~]$ lsnrctl start
    LSNRCTL for Linux: Version 11.1.0.6.0 - Production on 13-JUL-2009 21:34:50
    Copyright (c) 1991, 2007, Oracle. All rights reserved.
    Starting /opt/oracle/product/11.1.0/db_1/bin/tnslsnr: please wait...
    TNSLSNR for Linux: Version 11.1.0.6.0 - Production
    System parameter file is /opt/oracle/product/11.1.0/db_1/network/admin/listener.ora
    Log messages written to /opt/oracle/product/11.1.0/db_1/diag/tnslsnr/cscdserver13/listener/alert/log.xml
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=cscdserver13.azalea.local)(PORT=1521)))
    Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for Linux: Version 11.1.0.6.0 - Production
    Start Date 13-JUL-2009 21:34:50
    Uptime 0 days 0 hr. 0 min. 0 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File /opt/oracle/product/11.1.0/db_1/network/admin/listener.ora
    Listener Log File /opt/oracle/product/11.1.0/db_1/diag/tnslsnr/cscdserver13/listener/alert/log.xml
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=cscdserver13.azalea.local)(PORT=1521)))
    The listener supports no services
    The command completed successfully
    [oracle@cscdserver13 ~]$ lsnrctl status
    LSNRCTL for Linux: Version 11.1.0.6.0 - Production on 13-JUL-2009 21:35:10
    Copyright (c) 1991, 2007, Oracle. All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for Linux: Version 11.1.0.6.0 - Production
    Start Date 13-JUL-2009 21:34:50
    Uptime 0 days 0 hr. 0 min. 19 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File /opt/oracle/product/11.1.0/db_1/network/admin/listener.ora
    Listener Log File /opt/oracle/product/11.1.0/db_1/diag/tnslsnr/cscdserver13/listener/alert/log.xml
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=cscdserver13.azalea.local)(PORT=1521)))
    The listener supports no services
    The command completed successfully
    [oracle@cscdserver13 ~]$ lsnrctl service
    LSNRCTL for Linux: Version 11.1.0.6.0 - Production on 13-JUL-2009 21:35:36
    Copyright (c) 1991, 2007, Oracle. All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
    The listener supports no services
    The command completed successfully
    [oracle@cscdserver13 ~]$ sqlplus '/ as sysdba'
    SQL*Plus: Release 11.1.0.6.0 - Production on Mon Jul 13 21:36:18 2009
    Copyright (c) 1982, 2007, Oracle. All rights reserved.
    Connected to an idle instance.
    SQL> startup
    ORACLE instance started.
    Total System Global Area 3206836224 bytes
    Fixed Size 2148680 bytes
    Variable Size 1879049912 bytes
    Database Buffers 1308622848 bytes
    Redo Buffers 17014784 bytes
    Database mounted.
    Database opened.
    SQL> select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - 64bit Production
    PL/SQL Release 11.1.0.6.0 - Production
    CORE 11.1.0.6.0 Production
    TNS for Linux: Version 11.1.0.6.0 - Production
    NLSRTL Version 11.1.0.6.0 - Production
    SQL> exit
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - 64bit Production
    With the Partitioning, Oracle Label Security, OLAP, Data Mining,
    Oracle Database Vault and Real Application Testing options
    [oracle@cscdserver13 ~]$
    I appreciate all your help. At this point I'm completely lost.
    Thanks

  • [b]Application Server is not starting?[/b]

    I am using Windows 2000 Professional with SP3. When i start application server 7.0 , then i get the following message
    Could not start the instance: domain1:admin-server
    Server failed to start:abnormal subprocess termination
    Could not start the instance: domain1:server1
    Server failed to start: abnormal subprocess termination
    Could not start one or more instances in the domain:doamin1
    Could not start one or more domains
    Press any key to continue ...
    Pleae guide me.
    Thanx

    I have Sun ONE Developer Platform 1.0 Beta installed on
    Windows 2000 Server with SP2.
    admin-server never starts from a computer start. It sometimes starts
    on a restart.
    First error in admin-server log is: "SEVERE (2512): IOP5055: could not
    create listener on port [1,071], host [0,0,0,0]
    Changing listener iiop-listener port to 10711 (edit server.xml under
    admin-server->config) startsup admin-server. I have only tried this a
    few times, but it always startsup.
    Looking at the server instance in the browser under ORB shows the orb-listener-1
    port to be 3700. Is this the same port??
    I also had to edit the server.xml file under server1->config to change the
    http-listener port to something other than 80 (I used 8088), otherwise
    an error of "Port already in use" was given.
    The path separators in both server.xml files are a mixture of UNIX and MS
    styles, but seem to work. I have edited mine just to be sure!
    I see these hacks as just a means for progressing a few more steps. I would
    like to know the correct solutions.
    Michael Murphy

  • Application server not starting on win 2000

    when i try to start the application server, the prompt dos prints the following message:
    Could not start the instance: domain1:admin-server
    server failed to start: abnormal subprocess termination
    Could not start the instance: domain1:server1
    server failed to start: abnormal subprocess termination
    Could not start one or more instances in the domain : domain1
    Could not start one or more domains
    Premere un tasto per continuare . . .

    This is roughly what the log file says... is my EE environment not properly set up???
    [24/Feb/2003:10:16:01] INFO ( 2628): CORE1116: Sun ONE Application Server 7.0
    [24/Feb/2003:10:16:04] INFO ( 2628): CORE5076: Using [Java HotSpot(TM) Server VM, Version 1.4.0_02] from [Sun Microsystems Inc.]
    [24/Feb/2003:10:16:44] INFO ( 2628): JMS5035: Timed out after 30000 milliseconds while trying to verify if the JMS service startup succeeded.
    [24/Feb/2003:10:16:44] INFO ( 2628): JMS5036: More details may be available in the log file for the JMS service broker instance domain1_server1. Please refer to the JMS provider documentation for the exact location of this log file.
    [24/Feb/2003:10:16:44] SEVERE ( 2628): JMS5024: JMS service startup failed.
    [24/Feb/2003:10:16:44] SEVERE ( 2628): CORE5071: An error occured during initialization
    com.sun.appserv.server.ServerLifecycleException: [C4003]: Error occurred on connection creation. - caught java.net.ConnectException
         at com.iplanet.ias.jms.JmsProviderLifecycle.onInitialization(JmsProviderLifecycle.java:247)
         at com.iplanet.ias.server.ApplicationServer.onInitialization(ApplicationServer.java:206)
         at com.iplanet.ias.server.J2EERunner.confPreInit(J2EERunner.java:114)
    Caused by: com.sun.appserv.server.ServerLifecycleException: [C4003]: Error occurred on connection creation. - caught java.net.ConnectException
         at com.iplanet.ias.jms.JmsProviderLifecycle.onInitialization(JmsProviderLifecycle.java:231)
         ... 2 more
    Caused by: javax.jms.JMSException: [C4003]: Error occurred on connection creation. - caught java.net.ConnectException
         at com.sun.messaging.jmq.jmsclient.ExceptionHandler.getJMSException(ExceptionHandler.java:183)
         at com.sun.messaging.jmq.jmsclient.ExceptionHandler.handleException(ExceptionHandler.java:136)
         at com.sun.messaging.jmq.jmsclient.PortMapperClient.readBrokerPorts(PortMapperClient.java:145)
         at com.sun.messaging.jmq.jmsclient.PortMapperClient.init(PortMapperClient.java:86)
         at com.sun.messaging.jmq.jmsclient.PortMapperClient.<init>(PortMapperClient.java:47)
         at com.sun.messaging.jmq.jmsclient.protocol.tcp.TCPConnectionHandler.<init>(TCPConnectionHandler.java:46)
         at com.sun.messaging.jmq.jmsclient.protocol.tcp.TCPStreamHandler.openConnection(TCPStreamHandler.java:101)
         at com.sun.messaging.jmq.jmsclient.ProtocolHandler.init(ProtocolHandler.java:501)
         at com.sun.messaging.jmq.jmsclient.ProtocolHandler.<init>(ProtocolHandler.java:930)
         at com.sun.messaging.jmq.jmsclient.ConnectionImpl.openConnection(ConnectionImpl.java:1482)
         at com.sun.messaging.jmq.jmsclient.ConnectionImpl.init(ConnectionImpl.java:403)
         at com.sun.messaging.jmq.jmsclient.ConnectionImpl.<init>(ConnectionImpl.java:234)
         at com.sun.messaging.jmq.jmsclient.UnifiedConnectionImpl.<init>(UnifiedConnectionImpl.java:33)
         at com.sun.messaging.jmq.jmsclient.QueueConnectionImpl.<init>(QueueConnectionImpl.java:32)
         at com.sun.messaging.ConnectionFactory.createQueueConnection(ConnectionFactory.java:72)
         at com.sun.messaging.jmq.admin.jmsspi.JMSAdminImpl.pingProvider(JMSAdminImpl.java:733)
         at com.iplanet.ias.jms.JmsProviderLifecycle.waitForJmsProvider(JmsProviderLifecycle.java:284)
         at com.iplanet.ias.jms.JmsProviderLifecycle.onInitialization(JmsProviderLifecycle.java:224)
         ... 2 more
    [24/Feb/2003:10:16:44] SEVERE ( 2628): CORE3186: Failed to set configuration

  • How can I start two FF instances under two Windows accounts at once w/o -no-remote? I need to be able to send URLs to them.

    I have one FF (36.0) installation and two Windows user accounts: one for work (w/o internet access but with access to domain resources like JIRA) and one for internet access (w/o access to local resources). I need two instances of FF running at the same time with different resources.
    I've created profiles with different names under both accounts and specify profile names using -p parameter. However when I try to start both instances of FF (second one is started via RUNAS), second instance can't be started, new tab in already running instance is opened instead:
    firefox.exe -p profile
    runas.exe /profile /savecred /user:user_i "\"firefox.exe\" -p profile_i"
    When I start one of them with -no-profile, I can start both at once... but when I try to execute firefox.exe with an URL in order to open a tab with this URL in one of running instances (local URLs I open by starting firefox.exe under work account and remote URLs I open by starting FF via RUNAS), it can't sent URL to already running instance of same user, it always sends URLs to an instance that is runnung w/o -no-remote.
    firefox.exe -p profile -url "url"
    runas.exe /profile /savecred /user:user_i "\"firefox.exe\" -p profile_i -url \"url\""
    So, I need to have two instances under two different Windows user accounts, and when firefox.exe is started again, it should only communicate with instance that is running under same user account, it must not communicate with instance that is running under different Windows account.

    ''guigs2 [[#answer-699118|said]]''
    <blockquote>
    https://developer.mozilla.org/en-US/docs/Mozilla/Command_Line_Options#-no-remote
    This feature was removed and unfortunately I do not have any ETA or work around for this.
    </blockquote>
    It was the different '''-remote''' switch that was removed and not the '''-no-remote'''
    https://www.mozilla.org/en-US/firefox/36.0/releasenotes/

Maybe you are looking for

  • What are the caveats of using ASM as storage for RMAN backupsets?

    Hello all, We are currently evaluating RAC as our standard database platform. Until now we have been using 10g single instance with ASM for datafiles and local filesystems for RMAN backupsets and archivelogs. We chose to use local fileystems for back

  • Can't delete more than 5 podcasts at a time via Smart Playlists

    Can't delete more than 5 podcasts at a time via Smart Playlists, using the Shift+Delete keys to force deleting the source podcast. Becomes VERY tedious to get rid of old podcasts with certain "smart playlist" filters. Advice? Bug?

  • External Hard Drive using 7 port hub

    Not sure if anyone has had this problem but I thought I'd mention it in case it helps someone. I have a 20 inch iMac (Intel) 500 G, 2 G RAM operating system OS X 10.5.8 and purchased Seagate GoFlex Desk 2 T External Hard Drive to use to store picture

  • GetPrincpalData is null on custom module after XISOAPAdapterBean

    I have a custom module which executes after XISOAPAdapterBean on the receiver soap adapter. The getPrincipalData return null . This SOAP adapter is running under no-soap mode. Why is that? then how will I get access to the response msg. In a http sni

  • Upgrading to new version and references for repository export

    Hello, We have made a reference for repository export / import in MDM7.1 sp2. Now we want to upgrade to the newest version of MDM 7.1 . Is this reference automatically upgraded to the new version too or do have to upgrade and then start with a new re