Oracle webcache is not restarting, giving errors

Oracle webcache is not starting .
opmnctl status showing process webcache status "DOWN" but webcache-admin is "ALIVE ".
This happened after a restart of the server.
This happened after I changed the password for the "administrator" user by logged in as "weblogic" through URL &restarted the server after this(Restarted the server itself, not just through opmnctl)
http://host:7001/em.
This pasge is accessible but unable to restart webcache in here-through webcache->control->restart
Also treid  through command prompt
E:\Oracle\Instances\CoreHR\bin>opmnctl startproc ias-component=webcache1
opmnctl startproc: starting opmn managed processes...
===============================================================================
opmn id=CEWDDMC01-V:6701
Response: 1 of 2 processes started.
ias-instance id=CoreHR
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
ias-component/process-type/process-set:
  webcache1/WebCache/WebCache/
Error
--> Process (index=1,uid=1993,pid=1108)
  failed to start a managed process after the maximum retry limit
  Log:
  E:\Oracle\Instances\CoreHR\diagnostics\logs\WebCache\webcache1\console~WebCac
e~1.log
Tried
[code]
opmnctl startall
opmnctl startall: starting opmn and all managed processes...
================================================================================
opmn id=CEWDDMC01-V:6701
Response: 0 of 1 processes started.
ias-instance id=CoreHR
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
ias-component/process-type/process-set:
  webcache1/WebCache/WebCache/
Error
--> Process (index=1,uid=2013,pid=8776)
  failed to start a managed process after the maximum retry limit
  Log:
  E:\Oracle\Instances\CoreHR\diagnostics\logs\WebCache\webcache1\console~WebCach
e~1.log
E:\Oracle\Instances\CoreHR\bin>opmnctl status
Processes in Instance: CoreHR
---------------------------------+--------------------+---------+---------
ias-component                    | process-type       |     pid | status
---------------------------------+--------------------+---------+---------
rep_corehr                       | ReportsServerComp~ |    8908 | Alive
emagent_CoreHR                   | EMAGENT            |    3880 | Alive
RptSvr_CEWDDMC01-V_CoreHR        | ReportsServerComp~ |    8836 | Alive
Discoverer_CoreHR                | PreferenceServer   |    8984 | Alive
Discoverer_CoreHR                | ServicesStatus     |    8384 | Alive
webcache1                        | WebCache-admin     |    3236 | Alive
webcache1                        | WebCache           |     N/A | Down
ohs1                             | OHS                |    8512 | Alive
[/code]
The console webcache.log shows
[code]
15/03/04 12:24:50 Start process
Audit init
Cache Server failed to start
Refer to E:\Oracle\Instances\CoreHR\diagnostics\logs\WebCache\webcache1\event_log for more information
[/code]
The event log file shows:
[code]
[2015-03-04T12:24:50+00:00] [webcache] [NOTIFICATION:1] [WXE-08513] [logging] [ecid: ] Cache server process ID 6120 is starting up.
[2015-03-04T12:24:50+00:00] [webcache] [NOTIFICATION:1] [WXE-09612] [main] [ecid: ] Oracle Web Cache 11g (11.1.1.6), Build 11.1.1.7.0 130113.0741
[2015-03-04T12:24:50+00:00] [webcache] [NOTIFICATION:1] [WXE-13002] [config] [ecid: ] Maximum allowed incoming connections are 500
[2015-03-04T12:24:50+00:00] [webcache] [NOTIFICATION:1] [WXE-09441] [stats] [ecid: ] DMS enabled
[2015-03-04T12:24:51+00:00] [webcache] [WARNING:1] [WXE-11905] [security] [ecid: ] SSL additional information: Possibly caused by a corrupted disk or by some other process overwriting the file.
[2015-03-04T12:24:51+00:00] [webcache] [WARNING:1] [WXE-11905] [frontend] [ecid: ] SSL additional information: E:\Oracle\Instances\CoreHR\config\WebCache\webcache1\keystores\default
[2015-03-04T12:24:51+00:00] [webcache] [ERROR:1] [WXE-09709] [main] [ecid: ] Failed to initialize the HTTP component[/code]
Please advise any way to try to to restart webcache ?

If you suspect that the wallet got corrupted, you could check this note to recreate the wallet:
How to Create a Wallet via Fusion Middleware Control in FMW 11g (Doc ID 1226834.1)
And, for resetting administrator password: How To Change The WebCache Administrator Password When Forgotten? (Doc ID 1380426.1)
Regards,
Mohab

Similar Messages

  • HTTP PUBSUB not initializing giving  [ Error: missing } in XML expression ]

    Hi
    I am using WEBLOGIC 10.3 pusub sever and dojo-release1.1.1
    **I have created a channel with the following config as below**
    <wlps:channel-constraint>
    <wlps:channel-resource-collection>
    <wlps:channel-resource-name>subscribe</wlps:channel-resource-name>
    <wlps:description>subscribe channel constraint</wlps:description>
    <wlps:channel-pattern>/DispatchView/**</wlps:channel-pattern>
    <wlps:channel-operation>subscribe</wlps:channel-operation>
    <wlps:channel-operation>create</wlps:channel-operation>
    <wlps:channel-operation>publish</wlps:channel-operation>
    </wlps:channel-resource-collection>
    In my client side I have the following code in a page.
    dojo.require("dojox.cometd");
    var DEFAULT_CHANNEL = "/DispatchView/PubSub";          
    cometInit = function(){
                   dojox.cometd.init("cometd");
                   log( 'cometd initialized' );
    onMessage = function(msg) {
         log( 'onMessage() ' + msg.data.test );
    //alert(msg.data.test);
    //handles subscribe onclick
    onSubscribe = function(){
         dojox.cometd.subscribe( DEFAULT_CHANNEL, 'onMessage');
         log( 'subscribed to ' + DEFAULT_CHANNEL );
    cometInit();
    onSubscribe();
    Whenever I am opening the page its giving me the following error.
    [ Error: missing } in XML expression ]
    handshake error!: [ Error: missing } in XML expression ]
    cometd init failed
    Retry in interval+backoff=0+4000=4000ms
    [ Error: missing } in XML expression ]
    handshake error!: [ Error: missing } in XML expression ]
    cometd init failed
    Retry in interval+backoff=0+5000=5000ms
    Am I missing something. Can any body help me with this.

    Hi,
    The problem in your code is you haven't mentioned the server URL which is needed to subscribe.
    dojox.cometd.init("cometd"); this is a wrong intitialization instead you have to use
    dojox.cometd.init("http://localhost:9002/pubsub"); or something like this with an appropriate URL. In this URL /pubsub is context path and not the default channel you subscribe. This was the reason for your error (cometd init failed)
    Please let me know if the problem get solved or still u have any queries regarding the same.

  • AISUSER not assigned - Giving error during Maintenance Optimizer

    Hi Tech Masters,
    I am trying to set up Maintenance Optimizer on Solution Manager 7.0 SP15 ( WIndows 2003).
    I am using wizard to do this. But I am getting error when I am trying to update "Assign S-User for SAP Support Portal functionality" ( Basically the AISUSER Tcode does ) :
    When I am entering new entries, Its allowing me to enter User , SAP Customer No, but whenver I am trying to input Contact Person Its giving me the following error :
    "Partner number 0000000000 was not found in table AICONTACTS."
    Please help me out.
    Thanks
    Rabi Pal

    Are you sure that you are entering the correct Customer Number and the corresponding S-userid is correct ?
    May be this problem is related with several customer number administration ? check these notes
    Note 1151450 - FAQ: Managing several customer numbers - Support Package 15
    Note 1082010 - Administration of several customer numbers

  • R12  Version  12.0.6  Log in Page  not opening - giving error

    You have encountered an unexpected error. Please contact the System Administrator for assistance.
    DB is running OK , but the application is giving problem,
    SR raised , any quick help is appreciated
    Regards
    Koti

    Resolved by checking the alter log in the DB that showed us that the table space is not there.
    After extending the table space the issue resolved
    Thanks
    Koti

  • Itunes application will not open giving error code (-50) after update

    I'm having a bit of a problem with itunes. I'm running windows 7 64-bit and I hope someone could help me. When I finished making some purchases from itunes store over the weekend, I was told that there was an update for itunes. So I updated itunes and now I cannot get into itunes period. Luckly I was able to back up my purchases. When I try to open a movie that I purchased from the backup folder, I get a message that says "The iTunes application could not be opened. You do not have enough access privileges for this operation." or when I try to open itunes running as administrator I get another message "the itunes application could not be opened. An unknown error occurred (-50)." I am the only person using this computer and I have full admin rights. I had tried to download itunes again and even repaired itunes, but it just keeps crashing (B.S.o.D.). My OS is up to date. It also shows that itunes is running in task manager. So I have no idea wt heck is going on. Any help would be thankful.

    I had tried to download itunes again and even repaired itunes, but it just keeps crashing (B.S.o.D.).
    What numerical and text codes are you getting for the BSOD? (For example, 0X0000007E.)
    If the blue screen is referencing a specific file (for example, ati3duag.dll), let us know what the file is called too.

  • Ichat video not working- giving error

    I have successfully used ichat video when I hook my mac directly to my cable modem. But it errors out when I have my typical cabling in place. Comcast cable modem, Vonage box, netgear router, then imac computer. In that sinario, my video ichat doesn't work. At this time, I really don't understand opening ports, but went into my netgear settings and have port forwarding enabled with my computer IP address. I also have UPnp turned on. Any other suggestions?

    Not exactly.
    Many routers and modems now come with Protection features that are in effect Firewalls but can be regarded to some extent as filters.
    +Denial Of Service Attacks (DoS)+ hark back to the days when people would gang together to bring down large company Web servers by all logging into a web page and hitting refresh again and again.
    This would tend to overload the internet service that server had causing it to crash.
    With higher speed internet connection and faster computers this can almost be done by one person and a bit of scripting.
    Wiki on this
    So.... The manufacturers have built in DoS Protection that stops any connection on the port it is happening on - if it feels/judges that the data is "Too Much Too Fast". This is designed to stop you losing your whole internet connection.
    From there you have to consider the risk.
    Are you a big enough target for anyone ?
    Are you likely to be "Discovered" on-line for anyone malicious enough to be doing this on a more random basis ?
    +Stateful Packet Inspection (SPI)+ basically judges whether the data stream is legitimate
    Wiki again
    In addition to this a device may also have it's own Firewall.
    Much like the one on a computer this will be the thing you are thinking off in terms of stopping unwanted intrusions by allowing or not allowing various ports.
    Some autopmatically open any port you have in the method used to open ports.
    Some need setting in both places as it were (both Port Forwarding/Port Triggering/UPnP/DMZ and the firewall)
    Now the thing here to remember that on most devices the ports below port 1024 are not subject to NAT and are therefore open anyway.
    NAT is the bit that routes data on one port to a port with an IP to make sure it goes to the computer or device it should.
    As web browsing and mail apps tend to use ports below 1024 then this is why you can almost always get on the the Internet (Web Browse) and get email - almost no matter how you set up your LAN (connection devices).
    As most attacks are going to be in email form or malicious websites using malicious Flash setups (See this on UPnP on Wiki) the need for a firewall per se drops off.
    NAT itself tends to hide you from the Internet Directly.
    Firewalls do offer you at least the idea of where data is coming and going (but it is surprising how many applications "Call home" when launched (Advised of a new version of something ?)
    So in summary.
    DOS a or SPI are useful if you think or know you may be attacked in that fashion.
    They are additional features to any other firewall and the NAT Process.
    They are, on the whole, fairly arbitrary in the way they act with no adjustment.
    Faster Internet services are likely to bump into these settings more and more doing more common action like Streaming a video.
    On some devices the amount of data in iChat Video from a fast internet service can bump into them particularly in Leopard where all the data is on one port.
    I hope this helps.
    10:30 PM Friday; April 18, 2008

  • Program not compiling giving Error : Invalid path, "C:\Program Files\Java--

    I am using jcreator where i am getting this error while compiling
    Error : Invalid path, "C:\Program Files\Java\j2re1.4.2_05\bin\javac.exe" -classpath "C:\Program Files\Xinox Software\JCreatorV3LE\MyProjects\zeroCode\classes" -d C:\Program" Files\Xinox "Software\JCreatorV3LE\MyProjects\zeroCode\classes C:\Program" Files\Xinox Software\JCreatorV3LE\MyProjects\zeroCode\src\BasicServiceLister.java
    Instead of that same program is compiling in textpad/eclipse easily.
    Please tell me what should i do to set what.
    present settings are:
    User Variable:
    classpath C:\Program Files\Xinox JCreatorV3LE\MyProjects\zeroCode\ classes
    Java_HOme: C:\Program Files\Java\j2re1.4.2_05\bin\javac.exe
    Path:C:\Program Files\Java\j2re1.4.2_05\bin
    Classpath is System Variables:
    C:\Program Files\Xinox Software\JCreatorV3LE\MyProjects\zeroCode\ classes
    Path :C:\Program Files\Java\j2re1.4.2_05\bin
    wher i really need to modify the settings:
    May be thorugh command prompt.
    I never did. windowds environment varaibles i can set.
    Thanks
    Vijendra

    ... -d C:\Program" Files\Xinox "Software\JCreatorV3LE\MyProjects\zeroCode\classes ...
    Looks like you are typing in things wrong with the double quotes.

  • Top N query giving error for oracle 8.0.6

    Dear All,
    We are executing this query SELECT XBLNR, WERKS, MATNR, MDV01, BACKFLQUANT, STATUS, SAPTIMESTAMP, PITSTIMESTAMP, PMTIMESTAMP, BATCH FROM (SELECT XBLNR, WERKS, MATNR, MDV01, BACKFLQUANT, STATUS, SAPTIMESTAMP, PITSTIMESTAMP, PMTIMESTAMP, BATCH FROM PMBPITS.PITS_UNITY WHERE STATUS = '01' ORDER BY PMTIMESTAMP) WHERE ROWNUM < 20
    on oracle 8.0.6 but this is giving the following error
    ora - 00907 missing right parenthesis error
    1. Is it that in the inner select we cannot use order by and where clause together.
    2. We also found that if we remove order by from inner select then the query is not giving error
    pls help . points will be awarded

    Hi,
    what ever the Aman said is correct. You check this is supported in 8.1.5, SQL allows you to embed the ORDER BY clause in a subquery and place the ROWNUM condition in the top-level query;
    'Top-N query' is a ORACLE 8i feature which is supported in SQL. However,
    Bug:855720 states the following:
    "PL/SQL does not support top-N queries (ORDER BY in SUBSELECT/SUBQUERY
    or VIEW. Since this feature is available in SQL, but not in PL/SQL,
    it has been logged as a Bug that will be fixed in 8.1.6."
    - Pavan Kumar N

  • I was updating my ipad 2 and got it disconnected and its not responding,giving a blank screen with apple logo. when i connect it to itunes then it is giving an error that enter your passcode but the screen is blank how can enter my passcode?

    I was updating my ipad 2 and got it disconnected and its not responding,giving a blank screen with apple logo. when i connect it to itunes then it is giving an error that enter your passcode but the screen is blank how can enter my passcode?

    What to Do When Your iPad Won't Turn On
    http://ipad.about.com/od/iPad_Troubleshooting/ss/What-To-Do-When-Your-Ipad-Wo-No t-Turn-On.htm
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/TS3281
    iPad Frozen? How to Force Quit an App, Reset or Restart Your iPad
    http://ipadacademy.com/2010/11/ipad-frozen-how-to-force-quit-an-app-reset-or-res tart-your-ipad
    iPad: Basic troubleshooting
    http://support.apple.com/kb/TS3274
    iOS: Resolving update and restore alert messages
    http://support.apple.com/kb/TS1275
    iPad: Unable to update or restore
    http://support.apple.com/kb/ht4097
     Cheers, Tom

  • Oracle 10g AS on RHEL3 -- While restarting Component-- Error occurs

    Friends,
    I have installed Oracle 10g AS on RHEL3, under Oracle_Home where already Oracle9i is installed. I got some errors while changing the parameters in component[u] home and restarting it. I have changed some parameters in webcache and succesfully restarted.
    1) OC4J-home - failed to set the process status to ProcStatusRestart.
    2) OC4J.home - failed to restart a managed process after the maximum retry limit.
    I have commented some lines in server.xml(commented log, in order to
    reduce space for testing process) and one more file global_******.xml
    It also shows errors like orionp..... javahostexception.
    1)Can we install different versions of Oracle under one Oracle_Home.
    2)What could be the cause of the problem.
    3)How can i rectify it.
    Help me.
    Thanks,
    Raj

    Hi all,
    I have installed Oracle10g R2 on RHEL3.
    Regards,
    Raj

  • Can NOT restart Oracle BI Presentation Server on Windows XP

    Oracle BI server 10.1.3.4.1 installed in Windows XP.
    I stop the Oracle BI Presentation server and Oracle BI server for some reason, and restart them. BI server start sucessfully, but Oracle BI Presentation server restart failed.
    Here is message I got.
    Windows could not start Oracle BI Presentation server on the local computer. For more information, review the system event log. If the service is non-Microsoft
    service, contact the service vendor, and refer to service-specific error
    code -1.
    Here is message form system event log:
    The Oracle BI Presentation Server service terminated with service-specific
    error 4294967295 (0xFFFFFFFF).
    For more information, see Help and Support Center at
    http://go.microsoft.com/fwlink/events.asp.

    I fixed the problem. I forgot </CatalogPath> in c:\OracleBIData\web\config\instanceconfig.xml
    <CatalogPath>C:/OracleBIData/web/catalog/sh</CatalogPath>

  • Filter-class 'oracle.webcache.adf.filter.FacesPageCachingFilter' not found

    Hello,
    I am upgrade the JHS to JHS 10.1.3.2.51 and I get the next message when deploy my application:
    500 Internal Server Error
    Servlet error: Error loading filter 'PCF', filter-class 'oracle.webcache.adf.filter.FacesPageCachingFilter' not found
    I put a post on the JHeadstert forum, but they said this is not related to JHeadstart
    Please somebody can help to me?
    Thanks
    Tony

    Tony,
    guess that I need to have a word with them because they bouncing questions back far too often. Make sure you have the Webcache libraries provided and being a part of the project you deploy
    Frank

  • Forms10g is not running, giving this error

    Hi , i want to run my form in 10g but its not running giving the following error. i starts oc4j and also given the forms path and working directory in the formsweb.cfg .
    Network Error (tcp_error)
    A communication error occurred: "Connection refused"
    The Web Server may be down, too busy, or experiencing other problems preventing it from responding to requests. You may wish to try again at a later time.
    For assistance, contact your network support team.

    You don't need to worry about the port number if running from the forms builder directly.
    Let me tell you how it worked with me:
    I installed oracle developer suite normally.
    Then I edited the registry:
    start--> Run --> regedit
    1-forms_path : add the path in which you placed your fmb.
    2-Add a new entry ORACLE_PATH and in this one also add the path.
    Run the form from the forms builder directly
    Regards
    AK

  • Time machine is giving me this error;sparse bundle could not be access (error-1)

    The time machine is giving me this error; Disk Image"/Volumes/Data/adminstration Mac Book Pro (2).sparse bundle" could not be access (error-1)

    Restart the TC.. ie pull out the power.. count to 10.. plug in power.
    Still have issues restart the whole network in correct order.. modem.. TC.. clients. 2min gap. Any other network clutter.. restart in order it is connected..
    See C17 for more info if you still have issues.
    http://pondini.org/TM/Troubleshooting.html
    C12 is most popular problem.. but C17 is close second.
    I would also read C9 as your naming is perhaps a cause of the problem.

  • Oracle Apps Server can NOT restart.

    Hi OTN Experts,
    I encountered a trouble, after I backuped my instance,then apps server can not be restarted. I have read several similar threads,but still didn't find my solution. Could you please give me some suggestions.
    *<<<<<<<<Symptom>>>>>>>>>>>>*
    My Steps: start DB listener > start DB > Try to Start Apps.
    I didn't encounter error while start DB listener and DB server,but while using adstrtal.sh to start apps server,encounter error.
    +[oracle@bej301441 scripts]$ adstrtal.sh user/password+
    You are running adstrtal.sh version 120.15.12010000.3
    adstrtal.sh: Database connection could not be established. Either the database is down or the APPS credentials supplied are wrong.
    USAGE:  adstrtal.sh <appsusername/appspassword>
    adstrtal.sh <applications_username/applications_password> -secureapps
    adstrtal.sh -nodbchk
    adstrtal.sh: exiting with status 1
    *<<<<<<What I have investigated>>>>>>*
    1.Then I guess there is something wrong with DB/DB listener.You know if DB doesn't work,then Apps server will not work. I tried to use sqlplus to connect instance.
    +[oracle@bej301441 InstanceSID_bej301441]$ sqlplus user/password@InstanceSID+
    SQL*Plus: Release 10.1.0.5.0 - Production on Sat Jun 30 03:18:39 2012
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    ERROR:
    ORA-12537: TNS:connection closed
    Enter user-name:
    so It means there is something wrong with DB server.
    2.Then I check DB listener situation. use "lsnrctl status InstanceSID"command.
    +[oracle@bej301441 InstanceSID_bej301441]$ lsnrctl status InstanceSID+
    LSNRCTL for Linux: Version 10.1.0.5.0 - Production on 30-JUN-2012 03:50:09
    Copyright (c) 1991, 2004, Oracle.  All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=bej301441)(PORT=1522))(CONNECT_DATA=(SID=InstanceSID)))
    STATUS of the LISTENER
    Alias                     InstanceSID
    Version                   TNSLSNR for Linux: Version 11.1.0.7.0 - Production
    Start Date                30-JUN-2012 03:09:47
    Uptime                    0 days 0 hr. 40 min. 21 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   /u01/oracle/InstanceSID/db/tech_st/11.1.0/network/admin/InstanceSID_bej301441/listener.ora
    Listener Log File         /u01/oracle/InstanceSID/db/tech_st/11.1.0/log/diag/tnslsnr/bej301441/InstanceSID/alert/log.xml
    Listening Endpoints Summary...
    +(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=my server ip address)(PORT=1522)))+
    Services Summary...
    Service "InstanceSID" has 1 instance(s).
    Instance "InstanceSID", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    it appears DB listener works fine,is it right?
    3.Use addbctl.sh to start DB server.It tell me server is running...
    [oracle@bej301441 InstanceSID_bej301441]$ addbctl.sh start immediate
    You are running addbctl.sh version 120.1
    Starting the database InstanceSID ...
    SQL*Plus: Release 11.1.0.7.0 - Production on Sat Jun 30 07:33:53 2012
    Copyright (c) 1982, 2008, Oracle. All rights reserved.
    Connected to an idle instance.
    ORA-01081: cannot start already-running ORACLE - shut it down first
    Disconnected
    addbctl.sh: exiting with status 9
    [oracle@bej301441 InstanceSID_bej301441]$
    4.Execute "ps -ef|grep tns", I can see related processes..
    +[oracle@bej301441 InstanceSID_bej301441]$ ps -ef|grep tns+
    +root        13     2  0 May24 ?        00:00:00 [netns]+
    oracle   13616     1  0 May27 ?        00:00:32 /u01/oracle/InstanceSID/apps/tech_st/10.1.2/bin/tnslsnr LISTENER -inherit
    oracle   22183     1  0 02:55 ?        00:00:00 /u01/oracle/InstanceSID/apps/tech_st/10.1.2/bin/tnslsnr APPS_InstanceSID -inherit
    oracle   22486     1  0 03:09 ?        00:00:00 /u01/oracle/InstanceSID/db/tech_st/11.1.0/bin/tnslsnr InstanceSID -inherit
    oracle   28638 20816  0 03:51 pts/8    00:00:00 grep tns
    +[oracle@bej301441 InstanceSID_bej301441]$+
    5.tnsping the instance,appears works
    C:\Documents and Settings\ptian>tnsping InstanceSID
    TNS Ping Utility for 32-bit Windows: Version 10.1.0.2.0 - Production on 30-6月 -2012 18:14:29
    Copyright (c) 1997, 2003, Oracle.  All rights reserved.
    Used parameter files:
    D:\oracle\product\10.1.0\Db_1\NETWORK\ADMIN\sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = tcp) (HOST = my server ip address)(PORT = 1522)) (CONNECT_DATA = (SID = InstanceSID)))
    OK (770 msec)
    C:\Documents and Settings\ptian>
    *<<<<<<Some Config Files>>>>>>*
    1./etc/hosts
    [oracle@bej301441 InstanceSID_bej301441]$ cat /etc/hosts
    # Do not remove the following line, or various programs
    # that require network functionality will fail.
    127.0.0.1 localhost.localdomain localhost
    ::1 localhost6.localdomain6 localhost6
    10.182.74.33 my server ip address bej301441
    10.182.74.181 bej301589.cn.home.com
    138.1.191.58 rinoid06.us.home.com
    138.1.191.59 rinoid07.us.home.com
    2.$TNS_ADMIN/listener.ora
    [oracle@bej301441 InstanceSID_bej301441]$ cd $TNS_ADMIN
    [oracle@bej301441 admin]$ cat listener.ora
    # $Header: admk80ln_ux.sql 120.9 2007/03/09 04:31:05 sbandla ship $
    # LISTENER.ORA For Oracle Applications
    # This file is automatically generated
    APPS_InstanceSID =
    (ADDRESS_LIST =
    (ADDRESS= (PROTOCOL= TCP)(Host= bej301441)(Port= 1627))
    SID_LIST_APPS_InstanceSID =
    (SID_LIST =
    ( SID_DESC = ( SID_NAME = FNDSM )
    ( ORACLE_HOME = /u01/oracle/InstanceSID/apps/tech_st/10.1.2 )
    ( PROGRAM = /u01/oracle/InstanceSID/user/password_st/appl/fnd/12.0.0/bin/FNDSM )
    ( envs='MYAPPSORA=/u01/oracle/InstanceSID/user/password_st/appl/APPSInstanceSID_bej301441.env,PATH=/usr/bin:/usr/ccs/bin:/bin,FNDSM_SCRIPT=/u01/oracle/InstanceSID/inst/apps/InstanceSID_bej301441/admin/scripts/gsmstart.sh' )
    ( SID_DESC = ( SID_NAME = FNDFS )
    ( ORACLE_HOME = /u01/oracle/InstanceSID/apps/tech_st/10.1.2 )
    ( PROGRAM = /u01/oracle/InstanceSID/user/password_st/appl/fnd/12.0.0/bin/FNDFS )
    ( envs='EPC_DISABLED=TRUE,NLS_LANG=American_America.AL32UTF8,LD_LIBRARY_PATH=/u01/oracle/InstanceSID/apps/tech_st/10.1.2/lib32:/u01/oracle/InstanceSID/apps/tech_st/10.1.2/lib:/usr/X11R6/lib:/usr/openwin/lib:/u01/oracle/InstanceSID/apps/tech_st/10.1.2/jdk/jre/lib/i386:/u01/oracle/InstanceSID/apps/tech_st/10.1.2/jdk/jre/lib/i386/server:/u01/oracle/InstanceSID/apps/tech_st/10.1.2/jdk/jre/lib/i386/native_threads:/u01/oracle/InstanceSID/user/password_st/appl/sht/12.0.0/lib,SHLIB_PATH=/u01/oracle/InstanceSID/apps/tech_st/10.1.2/lib32:/u01/oracle/InstanceSID/apps/tech_st/10.1.2/lib:/usr/X11R6/lib:/usr/openwin/lib:/u01/oracle/InstanceSID/apps/tech_st/10.1.2/jdk/jre/lib/i386:/u01/oracle/InstanceSID/apps/tech_st/10.1.2/jdk/jre/lib/i386/server:/u01/oracle/InstanceSID/apps/tech_st/10.1.2/jdk/jre/lib/i386/native_threads:/u01/oracle/InstanceSID/user/password_st/appl/sht/12.0.0/lib,LIBPATH=/u01/oracle/InstanceSID/apps/tech_st/10.1.2/lib32:/u01/oracle/InstanceSID/apps/tech_st/10.1.2/lib:/usr/X11R6/lib:/usr/openwin/lib:/u01/oracle/InstanceSID/apps/tech_st/10.1.2/jdk/jre/lib/i386:/u01/oracle/InstanceSID/apps/tech_st/10.1.2/jdk/jre/lib/i386/server:/u01/oracle/InstanceSID/apps/tech_st/10.1.2/jdk/jre/lib/i386/native_threads:/u01/oracle/InstanceSID/user/password_st/appl/sht/12.0.0/lib,APPLFSTT=InstanceSID_BALANCE;InstanceSID_FO;InstanceSID,APPLFSWD=/u01/oracle/InstanceSID/inst/apps/InstanceSID_bej301441/appl/admin;/u01/oracle/InstanceSID/inst/apps/InstanceSID_bej301441/appltmp;/u01/oracle/InstanceSID/user/password_st/comn/webapps/oacore/html/oam/nonUix/launchMode/restricted' )
    STARTUP_WAIT_TIME_APPS_InstanceSID = 0
    CONNECT_TIMEOUT_APPS_InstanceSID = 10
    TRACE_LEVEL_APPS_InstanceSID = OFF
    LOG_DIRECTORY_APPS_InstanceSID = /u01/oracle/InstanceSID/inst/apps/InstanceSID_bej301441/logs/ora/10.1.2/network
    LOG_FILE_APPS_InstanceSID = APPS_InstanceSID
    TRACE_DIRECTORY_APPS_InstanceSID = /u01/oracle/InstanceSID/inst/apps/InstanceSID_bej301441/logs/ora/10.1.2/network
    TRACE_FILE_APPS_InstanceSID = APPS_InstanceSID
    ADMIN_RESTRICTIONS_APPS_InstanceSID = ON
    IFILE = /u01/oracle/InstanceSID/inst/apps/InstanceSID_bej301441/ora/10.1.2/network/admin/InstanceSID_bej301441_listener_ifile.ora
    SUBSCRIBE_FOR_NODE_DOWN_EVENT_APPS_InstanceSID = OFF
    [oracle@bej301441 admin]$
    3.farewell is disabled as well
    [oracle@bej301441 InstanceSID_bej301441]$ vi /etc/selinux/config
    SELINUX=disabled
    ==================================
    Could you please give me some suggestions, I am not clear what I need to check next...I have read many related topic, but still not find my solution.
    Thanks for your time
    Pan

    Thanks for your answer,
    1. In site:http://becomeappsdba.blogspot.jp/2006/08/startup-shutdown-apps-services.html
    It said,"+Order of StartUp of Services Should be First DB Listener, Database & then Application Tier Services+"
    I just follow that..so what should be first, DB Server or DB listener? a little confused.
    2. remotely,used SQLTools to connect instance,it told me:"*ORA-12537: TNS:connection closed*"
    Could you please suggest next action plan.
    Thanks
    Pan

Maybe you are looking for

  • Error while running package ORA-06553: PLS-553 character set name is not re

    Hi all. I have a problem with a package, when I run it returns me code error: ORA-06552: PL/SQL: Compilation unit analysis terminated ORA-06553: PLS-553: character set name is not recognized The full context of the problem is this: Previously I had a

  • Download file in different formats(its urgent)

    Hi experts, I have a problem when downlaod a file in different formats. File should be downloaded 3 Formats. 1. DWG 2. DXF 3. PDF this file is used for CAD Drawings. So i required a Functional Modules to generate a file in 3 different formats.

  • Trigger email if source file i not placed at the src folder every morning

    Hi All. I have a file to rfc scenario... the file is place at the source folder every morning... If the file is not place can we trigger an alert? or email? I was thiking of adapter scheduling but in case the file is not persent will it send an alert

  • How do I organise items in a folder?

    How do I organise items in a folder?  There is probably a really simply answer!  I want to change the order of items listed, but dragging doesnt work...

  • Video probs with QT

    audio plays on .mov files shot on iphone, but vid doesn't play or skips. I'm using XP--uninstalled itunes and QT, reinstalled and have QT set for safe mode.  I can play the vids on my ipod, but not the hard drive. MPEG-4 files play fine. ideas? thank