Critical error in the hyperion server

Hi all,
My server is working fine with all the hyperion products. In the afternoon, my admin change the IP of the server to connect the internet and update the Antivirus. After restarting the system. All the Hyperion products are down.
Server : Windows 2003 server sp1
DB : Oracle 11g
Please find the Shared services log below
*java.sql.SQLException: [Hyperion][Oracle JDBC Driver] Error establishing socket to host and port: hypplan:1521. Reason: Connection refused: connect*
Please guide me in this situation.
Thanks,
PC

The error says it is trying to connect to oracle host hypplan and it can't connect.
So it looks like it can't resolve hypplan to the correct address or maybe the ports are being blocked, maybe the antivirus is causing an issue.
Cheers
John
http://john-goodwin.blogspot.com/

Similar Messages

  • Critical Error in the Enterprise Server

    I am having a critical error in my process in the Enterprise Server.. It works fine inside Studio.. The following is the error:-
    Error while persisting the transaction data: 'An error occurred while accesing the database. Detail:SQL statement: 'unknown' ' Details: An error occurred while accesing the database. Detail:SQL statement: 'unknown' Caused by: Unexpected exception while enlisting XAConnection java.sql.SQLException: Transaction rolled back: Transaction timed out after 32 seconds BEA1-058A537B20F95C8E0272 at weblogic.jdbc.jta.DataSource.enlist(DataSource.java:1418) at weblogic.jdbc.jta.DataSource.refreshXAConnAndEnlist(DataSource.java:1330) at weblogic.jdbc.wrapper.JTAConnection.getXAConn(JTAConnection.java:189) at weblogic.jdbc.wrapper.JTAConnection.checkConnection(JTAConnection.java:64) at weblogic.jdbc.wrapper.Connection.preInvocationHandler(Connection.java:92)
    It also complains the following :-
    Process '/TestProcess#Default-1.0@Test' was not found in the Directory Service: 'oracle'
    Detail:Verify that the Directory Service is working properly and that the process is correctly deployed.
    Consider that Oracle J2EE Engines require referral configuration to communicate.
    But the process has been completely deployed..
    What could be the possible problem?
    Any answer anybody?
    This is urgent..

    It seems that some execution is taking longer than 30 seconds (default JTA timeout)
    You should increase the WLS JTA Timeout.
    Hope this helps,
    Ariel

  • The DNS server has encountered a critical error from the Active Directory. Check that the Active Directory is functioning properly. The extended error debug information (which may be empty) is "". The event data contains the error.

    got event ID 4015 and source DNS-Server-Service. please suggest how to fix this issue
    The DNS server has encountered a critical error from the Active Directory. Check that the Active Directory is functioning properly. The extended error debug information (which may be empty) is "". The event data contains the error.
    Raj

    Hi
     first run "ipconfig /flushdns" and then "ipconfig /registerdns" finally restart dns service and check the situation,also you can check dns logs computer management ->Event viewer->Custom Views->Server roles->DNS.

  • Very critical error in migration(Hyperion 9 to Hyperion 11)

    Hi All,
    I am facing very critical error during the migration. I have two servers, one with Hyperion 9 and other with Hyperion 11. I migrated(Planning Application, BRs) the Planning application from Hyperion 9 to Hyperion 11. Migration went well. Everything is working fine.
    Both the servers(Hyperion 9 & Hyperion 11) in the same network. If i disconnect the Hyperion 9 server from the network, some of the Planning form and some Business rules from Hyperion 11.1.1.3 are not working. It pointing the Old server(Hyperion 9).
    Please guide me in this situation.
    Thanks,
    PC

    Hi John,
    Thanks for your prompt reply.
    Some of the forms(Recurrent Exp) and some of the business rules are not working. For business rules, i checked the locations. All the locations belongs to Hyperion 11 only.
    Where i have the check the repository configuration("*check the config of the repository*")?
    Thanks,
    PC

  • Getting error 462 - The remote server machine does not exist or is unavailable

    I have several modules that read and write data to and from Excel 2010 worksheets. I am noticing that the Excel process does not end aven though Excel is not running on my PC. It is like an orphan process. If I try running the Access module again I get the
    message "error 462 - The remote server machine does not exist or is unavailable". Here is the code I am running. When I click the Debug button on the message box the line "rowNum = objXLAppln.Range("A" & Rows.Count).End(xlUp).Row"
    is highlighted.
    Option Compare Database
    Option Explicit
    Function ImportImportanceScores()
    Dim RecSet As DAO.Recordset
    Dim objXLAppln As Excel.Application
    Set objXLAppln = New Excel.Application
    Dim objWBook As Excel.Workbook
    Dim rowNum As Variant
    Dim i As Integer
    Dim j As Integer
    Dim StrPathFile As String, strFile As String, strPath As String
    Dim strBrowseMsg As String, strInitialDirectory As String, strFilter As String
    'show dialogue box
    strBrowseMsg = "Select the EXCEL file:"
    'set directory to load files from
    strInitialDirectory = "C:\Bridge_CIP_Part-A_B\"
    'run strFilter function
    strFilter = ahtAddFilterItem(strFilter, "Excel Files (*.xlsx)", "*.xlsx")
    StrPathFile = ahtCommonFileOpenSave(InitialDir:=strInitialDirectory, _
    Filter:=strFilter, OpenFile:=True, _
    DialogTitle:=strBrowseMsg, _
    Flags:=ahtOFN_HIDEREADONLY)
    If StrPathFile = "" Then
    MsgBox "No file was selected.", vbOK, "No Selection"
    Exit Function
    End If
    'Set Excel application object. Critical for macro to run properly. Do not change.
    'Open workbook and worksheet to load data.
    With objXLAppln
    Set objWBook = objXLAppln.Workbooks.Open(StrPathFile)
    objXLAppln.Visible = True
    End With
    Set RecSet = CurrentDb.OpenRecordset("Importance_Scores")
    'Copy data from Excel cells to Access fields
    objXLAppln.Sheets("Importance_Scores").Select
    rowNum = objXLAppln.Range("A" & Rows.Count).End(xlUp).Row
    objXLAppln.Range("A6").Select
    'Add records to table from Excel
    With RecSet
    For i = 0 To rowNum - 6
    RecSet.AddNew
    RecSet.Fields("CIP_ID").value = objXLAppln.ActiveCell.Offset(i, 0).value
    RecSet.Fields("Target_Timeframe_for_Construction").value = objXLAppln.ActiveCell.Offset(i, 2).value
    RecSet.Fields("ImportanceFactor_TI-1").value = objXLAppln.ActiveCell.Offset(i, 21).value
    RecSet.Fields("ImportanceFactor_TI-2").value = objXLAppln.ActiveCell.Offset(i, 22).value
    RecSet.Fields("ImportanceFactor_TI-3").value = objXLAppln.ActiveCell.Offset(i, 23).value
    RecSet.Fields("ImportanceFactor_TI-4").value = objXLAppln.ActiveCell.Offset(i, 24).value
    RecSet.Fields("ProjectRank").value = objXLAppln.ActiveCell.Offset(i, 33).value
    RecSet.Update
    Next i
    End With
    'Close everything
    RecSet.Close
    objWBook.Close SaveChanges:=False
    objXLAppln.Quit
    Set RecSet = Nothing
    Set objWBook = Nothing
    Set objXLAppln = Nothing
    End Function

    In the line
        rowNum = objXLAppln.Range("A" & Rows.Count).End(xlUp).Row
    Rows does not refer to objXLAppln or to objWBook. Change it to
        rowNum = objXLAppln.Range("A" & objWBook.Sheets("Importance_Scores").Rows.Count).End(xlUp).Row
    Regards, Hans Vogelaar (http://www.eileenslounge.com)

  • Getting an error prompt "the facebook server has returned an unknown error and is not able to fulfill your request. (2001)"

    Hi. I need help regarding facebook for blackberry. I cannot post any status update, i keep on receiving an error prompt "the facebook server has returned an unknown error and is not able to fulfill your request. (2001)".  it has been like this for the past 3 days. I already did the hard reboot many times, re-send service book though i do'nt think it's needed, and tried uninstalling and reinstalling the facebook application too but still getting the same error everytime i try to post a status update. I can comment to messages on my wall and other profiles, the news feed is updating in time too, i can also log-in and out to facebook with no problem, as well as other applications on my phone like foursquare, BBm, ubersocial, BB protect, BB app world, etc, are all working perfectly fine. And now I don't know what seems to be the problem.
    I've already contacted my network provider and told me that the error i'm getting is beyond their scope.
    Is anybody having the same problem as mine? 
    Can someone in BB support team help me regarding this issue and tell me what should I do?
    Thank you in advance. 

    I got the same issue !! Since I've updated my Facebook app 2 or 3 week ago !
    I can not  update my status and check-in ! It gives me "the facebook server has returned an unknown error and is not able to fulfill your request. (2001) "
    I can upload photo, put comment on people, like people status/picture. The news feed update perfectly !
    I also  tryied to uninstall reinstall the app, reboot etc etc ! I still can't update my status !!!! I've installed 3.0.0.17 this morning and the issue is still there...
    I've remarked one thing... On my facebook under "privacy setting/the Apps, Games and Websites" I used to have a "blackberry app" installed. It's not there anymore and I didn't remove it.
    I don't know how to reinstall it...

  • Error starting the Application Server and Deployment Tool

    After installing the iPlanet Aplication Server with sp3 I get the following
    errors starting the Application Server and Deployment Tool.
    iAS Application Server
    ================
    GXBindInit: GXBindBasic failed
    GXContextInit: GXBindInit failed 2
    [26/Out/2001 17:46:49:8] error: ENGINE-context_init_failed: EngineClassSpace
    ContextModule.createContextInit failed:
    error: could not get context
    *** Errors in initialization from registry ***
    Errors in initialization, exiting ...
    iAS Deployment Tool
    ===============
    GXBindInit: GXBindBasic failed
    GXContextInit: GXBindInit failed 2
    [26/Out/2001 17:23:40:7] error: ENGINE-context_init_failed: EngineClassSpace
    ContextModule.createContextInit failed:
    Exception in thread "main" java.lang.NullPointerException
    at com.kivasoft.util.Util.loadComponent(Unknown Source)
    at
    com.iplanet.ias.tools.buzz.ui.application.StartBuzz.initGDS(Unknown Source)
    at com.iplanet.ias.tools.buzz.ui.application.StartBuzz.main(Unknown
    Source)
    Can anyone help me please!

    Hi,
    Would be more helpful if you can mention, the O/S. Also, pls mention where
    you are getting this error, at kjs or kxs, or, are you able to start the server
    and at which specific instance do you encounter this.
    Regards
    Raj
    "Antonio Casqueiro" wrote:
    After installing the iPlanet Aplication Server with sp3 I get the following
    errors starting the Application Server and Deployment Tool.
    iAS Application Server
    ================
    GXBindInit: GXBindBasic failed
    GXContextInit: GXBindInit failed 2
    [26/Out/2001 17:46:49:8] error: ENGINE-context_init_failed: EngineClassSpace
    ContextModule.createContextInit failed:
    error: could not get context
    *** Errors in initialization from registry ***
    Errors in initialization, exiting ...
    iAS Deployment Tool
    ===============
    GXBindInit: GXBindBasic failed
    GXContextInit: GXBindInit failed 2
    [26/Out/2001 17:23:40:7] error: ENGINE-context_init_failed: EngineClassSpace
    ContextModule.createContextInit failed:
    Exception in thread "main" java.lang.NullPointerException
    at com.kivasoft.util.Util.loadComponent(Unknown Source)
    at
    com.iplanet.ias.tools.buzz.ui.application.StartBuzz.initGDS(Unknown Source)
    at com.iplanet.ias.tools.buzz.ui.application.StartBuzz.main(Unknown
    Source)
    Can anyone help me please!

  • Error starting the Application Server and Deployment Tool in Windows 2000

    After installing the iPlanet Aplication Server with sp3 in Windows 2000 I
    get the following
    errors starting the Application Server and Deployment Tool.
    iAS Application Server
    ================
    GXBindInit: GXBindBasic failed
    GXContextInit: GXBindInit failed 2
    [26/Out/2001 17:46:49:8] error: ENGINE-context_init_failed: EngineClassSpace
    ContextModule.createContextInit failed:
    error: could not get context
    *** Errors in initialization from registry ***
    Errors in initialization, exiting ...
    iAS Deployment Tool
    ===============
    GXBindInit: GXBindBasic failed
    GXContextInit: GXBindInit failed 2
    [26/Out/2001 17:23:40:7] error: ENGINE-context_init_failed: EngineClassSpace
    ContextModule.createContextInit failed:
    Exception in thread "main" java.lang.NullPointerException
    at com.kivasoft.util.Util.loadComponent(Unknown Source)
    at
    com.iplanet.ias.tools.buzz.ui.application.StartBuzz.initGDS(Unknown Source)
    at com.iplanet.ias.tools.buzz.ui.application.StartBuzz.main(Unknown
    Source)
    Can anyone help me please!

    Okay, pls check that you are logged in as administrator and installed and now you are logged in as administrator and registering the iAS server. Did you get any installation failures while installing and are you able to register the server using iASAT ?

  • An error occurred at the server : Your request was cancelled due to an internal error on the Page Server. The object you are try

    hi i am getting this error.
    An error occurred at the server : Your request was cancelled due to an internal error on the Page Server. The object you are trying to view does not have the required property 'SI_FILES'. Please contact your system administrator
    please do the nedful.

    yeah Ted Ueda,
    what you are saying is correct. i am getting this output for
      report.getProgID() is CrystalEnterprise.Report.
    can you elaborate this. i am new to this. and also please let me know how to start and if u have any materials on this please forward to [email protected] and [email protected]
    please let me know which is best book for beginers.
    Thanks & Regards,
    Purushotham Podaralla

  • Error on the activation server

    Keeps having the following error reported when trying to authorize my PC with Adobe Digital Editions: Error on the activation server". My Adobe ID and password are correct. Anyone know what to do? this has been going on for days.

    Digital Editions 2.0 doesn't work properly with some eReaders. 
    With my Sony, not only did the copy protection prevent copy to the Sony,
    but while the Sony was plugged in it prevented me reading the books using ADE on the PC.
    Once the Sony was unplugged, the books could again be read on the PC.
    It may be worth trying with v1.7.2 instead; certainly is if you find symptoms as I just described.
    Version 1.7.2 is a little difficult to find, available on Adobe site for Windows and for Mac.
    http://helpx.adobe.com/digital-editions/kb/cant-install-digital-editio ns.html
    also for PC at http://www.tucows.com/preview/853736/Adobe-Digital-Edition-For-EBooks

  • Error configuring the Kanaka Server via Wizard in Step 2 / 4

    Testing the Kanaka Client for Mac we have an error configuring the Kanaka Server via Setup Wizard in Step 2 of 4:
    After selecting the context where the Kanaka Proxy Object and the Administrator Group should be created and clicking on the next button the Wizard displays an error message >Unknown Directory services error has occurred< and stops. We are not able to complete the Wizard and do not find any message in the log(s) and eDirectory traces which let us know what is going wrong.
    Any help would be appreciated.
    Werner Seifert
    Information Management
    Johannes Kepler University Linz/Austria
    werner dot seifert at jku dot at

    On 24/01/2012 06:46, wseifert wrote:
    > Testing the Kanaka Client for Mac we have an error configuring the
    > Kanaka Server via Setup Wizard in Step 2 of 4:
    >
    > After selecting the context where the Kanaka Proxy Object and the
    > Administrator Group should be created and clicking on the next button
    > the Wizard displays an error message>Unknown Directory services error
    > has occurred< and stops. We are not able to complete the Wizard and do
    > not find any message in the log(s) and eDirectory traces which let us
    > know what is going wrong.
    >
    > Any help would be appreciated.
    Does the container you're adding the Kanaka Proxy object to have a
    Universal Password policy assigned?
    HTH.
    Simon
    Novell/SUSE/NetIQ Knowledge Partner
    Do you work with Novell technologies at a university, college or school?
    If so, your campus could benefit from joining the Novell Technology
    Transfer Partner (TTP) program. See novell.com/ttp for more details.

  • TS1424 how about "the connection error. The game server had an internal error. please try again later". thats what happen to me while i want to purchase a gem in dragonvale aplication and i being charged for the Gem that i never had.

    regarding of the game that I playing, its Dragonvale, I plan to buy a Gem. and after I desided to buy, but what happen is that the game centre it self didnt gave me the Gem but instead they said "Connection Error. The Game server had an internal error. Please try again later."
    so if thats the case of error transaction..so why the BACKFLIP STUDIOS(DragonVale) charged me to my credit card for the Gem that I never received.
    I need to clear this things.

    regarding of the game that I playing, its Dragonvale, I plan to buy a Gem. and after I desided to buy, but what happen is that the game centre it self didnt gave me the Gem but instead they said "Connection Error. The Game server had an internal error. Please try again later."
    so if thats the case of error transaction..so why the BACKFLIP STUDIOS(DragonVale) charged me to my credit card for the Gem that I never received.
    I need to clear this things.

  • DTCPing Error: 1722(The RPC server is unavailable.)

    Hi,
    I have Windows 7 professional on my laptop and I have Windows Server 2012 on my Server.
    I have configured all the msdtc properties, the firewall is off on both the servers. Network team confirmed that the ports are open in both the directions.
    When I use DTCPing to test the connection from my laptop to Server I received this error
    1722(The RPC server is unavailable.)
    When I tried DTCPing from Server to my laptop, I got following error:
    Error(0x5) at dtcping.cpp @303
    -->RPC pinging exception
    -->5(Access is denied.)
    Any suggestions would be really helpful.
    Regards,
    JD

    Hi JD,
    The root cause and steps to resolve this issue is very well documented in this blog below.
    Refer:
    Troubleshooting MSDTC issues with the DTCPing tool
    Also refer:
    Windows Server: Troubleshooting "RPC Server Unavailable" Errors
    Most likely the port 135 is blocked and you should check with your network team to get the port 135 opened up on the firewall.
    Rachit
    Please mark as answer or vote as helpful if my reply does

  • Communication error with the opmn server local port

    Working on 64-bit R12.0.6 on AIX 5L
    Application services are not being started properly. They are being started with status 2(sometimes with 4).
    Autocinfig is being successfully completed.
    Please help me how I can get rid of this error. Following are some of the environment setting details:
    ons.conf
    nodes=appaix02.us.oracle.com:15007
    opmn.xml
    <opmn xmlns="http://www.oracle.com/ias-instance">
    <notification-server>
    <port local="15006" remote="15007" request="15005"/>
    opmn.log
    OPMN worker process exited with status 4. Restarting
    OPMN worker process exited with status 4. Restarting
    OPMN worker process exited with status 4. Restarting
    OPMN worker process exited with status 4. Restarting
    OPMN worker process exited with status 4. Restarting
    OPMN worker process exited with status 4. Restarting
    ons.log
    07/01/11 13:12:02 [4] ONS server initiated
    07/01/11 13:12:52 [4] Logging disabled
    07/01/11 13:12:53 [4] ONS server initiated
    07/01/11 13:13:04 [4] Logging disabled
    07/01/11 13:13:04 [4] ONS server initiated
    07/01/11 13:13:17 [4] Logging disabled
    07/01/11 13:13:28 [4] ONS server initiated
    07/01/11 13:13:40 [4] Logging disabled
    07/01/11 13:13:41 [4] ONS server initiated
    07/01/11 13:14:20 [4] Logging disabled
    07/01/11 13:14:21 [4] ONS server initiated
    07/01/11 13:14:29 [4] Logging disabled
    07/01/11 13:14:29 [4] ONS server initiated
    07/01/11 13:14:34 [4] Logging disabled
    07/01/11 13:14:34 [4] ONS server initiated
    07/01/11 13:15:53 [4] Logging disabled
    adopmnctl.txt
    10/08/10-23:30:43 :: adopmnctl.sh version 120.4.12000000.3
    10/08/10-23:30:43 :: adopmnctl.sh: Stopping Oracle Process Manager (OPMN) and t
    he managed processes
    opmnctl: stopping opmn and all managed processes...
    10/09/10-11:13:41 :: adopmnctl.sh version 120.4.12000000.3
    10/09/10-11:13:41 :: adopmnctl.sh: Starting Oracle Process Manager (OPMN)
    opmnctl: opmn start failed.
    10/09/10-11:15:09 :: adopmnctl.sh: exiting with status 2
    adformsctl.txt
    opmnctl: stopping opmn managed processes...
    10/09/10-11:18:11 :: adformsctl.sh version 120.12.12000000.5
    10/09/10-11:18:11 :: adformsctl.sh: starting OPMN if it is not running
    Communication error with the OPMN server local port.
    Check the OPMN log files
    Communication error with the OPMN server local port.
    Check the OPMN log files
    Communication error with the OPMN server local port.
    Check the OPMN log files
    Communication error with the OPMN server local port.
    Check the OPMN log files
    Communication error with the OPMN server local port.
    Check the OPMN log files
    Communication error with the OPMN server local port.
    Check the OPMN log files
    Communication error with the OPMN server local port.
    Check the OPMN log files
    Communication error with the OPMN server local port.
    Check the OPMN log files
    Communication error with the OPMN server local port.
    Check the OPMN log files
    Communication error with the OPMN server local port.
    Check the OPMN log files
    Communication error with the OPMN server local port.
    Check the OPMN log files
    Communication error with the OPMN server local port.
    Check the OPMN log files
    opmnctl: opmn start failed.
    Please help.

    "A point to add"
    I just noticed that following message is being continously receiving in the database alert_log:
    Sat Oct 9 16:04:52 2010
    WARNING: inbound connection timed out (ORA-3136)
    Sat Oct 9 16:05:32 2010
    WARNING: inbound connection timed out (ORA-3136)
    Sat Oct 9 16:06:30 2010
    WARNING: inbound connection timed out (ORA-3136)
    Sat Oct 9 16:07:10 2010
    WARNING: inbound connection timed out (ORA-3136)
    Sat Oct 9 16:09:35 2010
    Incremental checkpoint up to RBA [0x1d.1f9928.0], current log tail at RBA [0x1d.1f9a79.0]
    Sat Oct 9 16:11:52 2010
    WARNING: inbound connection timed out (ORA-3136)
    Sat Oct 9 16:29:40 2010
    Incremental checkpoint up to RBA [0x1d.1f9b87.0], current log tail at RBA [0x1d.1f9bf4.0]
    ~
    Please help.

  • Just trying out my new mac but email won't load, error says "The mail server denied access to the account because an administrator or other mail client was using it when Mail tried to log in. Try again later." A little lock is beside the email inbox

    Just trying out my new mac but email won't load, error says "The mail server denied access to the account because an administrator or other mail client was using it when Mail tried to log in. Try again later." A little lock is beside the email inbox account, no password prompted and account is online and enabled... Thoughts?

    Have you tried clicking on the lock to see it it will then ask for a passwored.  Otherwise, try reblooting.

Maybe you are looking for

  • Final Cut Studio 2 Manuals in Package ?

    I just got my Final Cut Studio 2 upgrade and the box had 4 Manuals for Final Cut Pro 6 and one for Color. There were no manuals for Soundtrack, Compressor, Motion, etc. Is that because I got the upgrade ? Did people who got purchased Final Cut Studio

  • How to restore a backup from time machine in 10.6.8

    I am running 10.6.8 on my MacPro (early 2008). I have 4 internal hard drives. The main boot drive has 10.6.8 and the secondary drive with a system has Lion. I cannot completely upgrade to Lion on my main drive until all my software is compatible. My

  • Itunes won't open - referenced memory error

    I too cannot get itunes to open. Keep getting an error message regarding referenced memory that cannot be read. The instruction is different each time - first it was 0x0b011200 then 0xf80114ed then 0x97011534 - then is has the click ok to terminate o

  • Audit  browser showing complete for all process flows.

    Hi, My process flows are executing success fully. Based upon the activities I am ending the process with END_SUCCESS, END_ERROR or END_WARNING acitivities. But here even, the process flow is ended up with END_ERROR activitiy the process flow status i

  • Newbie question with puts/gets

    I'm having trouble getting put and gets to work. Right now I do an insert into the DB (returns 0) with data in the data.data fields and then when I get it I always get empty space. I was hoping that someone might be able to help. Here is the two snip