Why the server was down earlier today ?

If I may ask , Why the server was down earlier today ? (around 9 AM GMT)
Just curious .

ckeck wrote:It was down for a while, I was up last night from about 10:30pm-12:30am CST and could not reach the site the entire time. Not sure how long it was down after that.
From looking at the post history, it was down for about 10.5 hours.
I was afraid someone forgot to pay the bills. 

Similar Messages

  • If the server was down

    i have made a post insert trigger to take a certain action after inserting a new row into the table,and let say that after inserting a new row into the table and before executing the trigger the server went down and the trigger did not execute.
    i want to ask if there is a way to make sure that the trigger will execute in any condition.

    if the system crashes then some rows will be inserted and the other will not so the data will be inconsistant. Transaction integrity needs to be built into the system. Oracle provides a pretty good basis for constructing transactional systems but it cannot beat bad design. I feel you need to read up on transaction management. There is a good chapter in the Concepts Guide. It is also worth reading about the ACID principles. Once you understand how to manage your transaction you will be able to build a properly functioning system.
    Good luck, APC

  • Re-connection to ORACLE db after the ORACLE server was down

    Hi all,
    I have a problem i've been trying 2 solve for several weeks now.
    I'm running a Java Class which connects to an ORACLE database located
    on the server 'server'.
    Everything is working fine.
    the problem is that if when the class is first run and the server is
    down (not started), I get an SQLException:
    "Exception d'E/S: The network adapter could not establish the
    connection", so the class retries after a certain period,
    say 5 minutes (the server is up and running at that time),
    i still get the same exception whereas it should now connect correctly.
    here's the code:
    public void run()
        bool retry = false;
        try
         DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
              Cnn = DriverManager.getConnection("jdbc:oracle:thin:@server:1521:orcl", "username", "password");
        catch(SQLException e)
             if (e.getLocalizedMessage().compareTo("Exception d'E/S: The Network Adapter could not establish the connection") == 0)
         {     retry = true;     }
         else
         {     retry = false;     }
        finally
         try
            if (retry)
              Thread.sleep(300000);
                   System.out.println("Trying connection again...");
                   run();
            else
              //End
              return;
         catch(java.lang.InterruptedException e)
            return;
    }any help or suggestion would be appreciated,
    thanx,
    greg

    Greg,
    why not try separating the connection part into a separate method, and add a few more System.out.println()s so you can see where you are going:
    public void run()
       System.out.println("started run()");
       // Only need to do this once...
       DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
       // Keep trying until we're connected...
       while (!connect())
          Thread.sleep(300000);
          System.out.println("Trying connection again...");
       System.out.println("finished run()");
    * Connects to oracle.
    * @return Has connection been made?
    private boolean connect()
       System.out.println("started connect()");
       try
          cnn = DriverManager.getConnection("jdbc:oracle:thin:@server:1521:orcl", "username", "password");
       catch(SQLException e)
          System.err.println(e.getLocalisedMessage());
       System.out.println("finished connect()");
       return (cnn != null);
    }I'm assuming here that "cnn" (I changed the capitalisation..) is a class attribute, since it was not defined within run() in the original code.
    You could probably change the last line of connect() to: return (cnn instanceof oracle.jdbc.driver.OracleDriver);This doesn't change the flow of the program (except only registering the oracle driver once) but it should help you debug.
    Ben New
    [email protected]
    Leftclick Software Development
    http://www.leftclick.com.au/

  • My iPhone was fine earlier today, but in settings....it won't let me access iCloud, FaceTime, mail settings.....what the heck? I've tried everything. My iPad is fine and iCloud etc. works

    My iPhone was fine earlier today, but in settings....it won't let me access iCloud, FaceTime, mail settings.....what the heck? I've tried everything. My iPad is fine and iCloud etc. works!

    Turn OFF the restriction to allow changes to accounts you've set in Settings > General > Restrictions.

  • How come the sight was down so long? and why does the system not send emails anymore with responses?

    how come the sight was down so long? and why does the system not send emails anymore with responses?

    The system is back up and fully functional. How long has it been since you stopped receiving notifications? Can you share your form with us so we can have a look into what might be going wrong?
    Andrew

  • Contribute could not connect because the server is down"

    My client tries to connect to the website with Contribute and
    gets the error "Contribute could not connect because the server is
    down" however I connect with no problems, using Contribute or
    Dreamweaver.
    I sent him a new connection key but the same error.
    Only problem I ever have is that sometimes I get a "can't
    save files to shared something-or-other" on exit after
    administrating, but I don't know if that's related or not - it
    never seems to affect anything at my end.
    Please help! Thanks

    OK, problem solved here:
    The access denied or file does not exist error was being
    caused by the fact there was a 0KB index file somehow.
    Once we got rid of that we still had the "Contribute could
    not connect because the server is down or not accpeting
    connections" error to get round.
    I had previously asked my client to go in an change the FTP
    settings in the Advanced screen to be Choose FTP server settings
    manually and select Use Passive FTP to connect to the server and
    make sure Use FTP Performance Optimization is not selected. I don't
    think this was ever done (and if it had been it would have saved me
    HOURS of time spent trying to diagnose this problem).
    Today I ended up backing up every contribute related file and
    folder on the server to my local machine then deleting them. After
    having done that I asked my client to create a new connection using
    the FTP details (not a connection key). That still didn't work so I
    got them to (and this time they did it) change the advanced FTP
    settings as above and BINGO! they can now publish.
    I'm guessing that if I had sent a connec tion key with the
    same settings specified in the Advanced FTP then it still would
    have worked.
    I hope this saves someone else some time. I am going to have
    a few beers now to celebrate.

  • HEX 0x8BBB0011 The connection to the server was disconnect​ed

    Hi,
       I am using a Network shared variable to control a Loop in FPGA in cRIO 9073. For the past 1 month the program was runing without any issue but suddenly the VI stopped thrwoing an error
    "HEX 0x8BBB0011 The connection to the server was disconnected
     The error or warning occureed while writing the following shared variable
     \\NW-cRio\NW Library\NW_Force_cal
     \\169.254.106.130\NW Library\NW_Force_cal"
     A screen shot of the VI is attached, the NW_Force_cal is highlighted.
     After the VI was closed and rerun the VI resumed running without issues. This kind of unpredictable behaviour is very difficult to handle, I lost real time data recording for 12 hours because of this issue.
      Please suggest a solution for this issue.
    Thanks
    Mukunda
    Solved!
    Go to Solution.
    Attachments:
    Vi.png ‏120 KB

    The error explained the issue.  The network had problems that led to the server being disconnected.  The way to fix this problem is to understand what is meant by "real-time."  This is just another way to describe deterministic computing.  That is, the program guarantees everything will happen within a predetermined period.  In order for things to be deterministic, they must be controllable.  The most obvious way to break determinism is to prompt the user for input.  As we clearly cannot guarantee the user will reply within a certain period, we can no longer call the program deterministic.  In this case, we have a more subtle break of determinism.  Relying solely on a network will break the determinism.  There simply isn't a way to guarantee the network won't get hit harder than usual.  In this case, the network was down for a period of time long enough to throw an error.
    Here's where we can look to fix things.  After the error was thrown, what did the code do with it?  The error wire isn't used for anything.  I would expect it to throw an error and halt the program.  This clearly isn't the behavior you want.  So, why aren't we using the wire for some error handling?  In the case of an error, you can log the data locally.  When you regain the network, you can dump the log back to the host PC you typically use for your data collection.  This removes the reliance on your network for the code to work.  Using more robust code solves the issue with relatively easy error handling.  Unfortunately, there is absolutely nothing anyone here can do to ensure your network never loses connectivity.  
    Jeff B.
    Applications Engineer
    National Instruments

  • Hyper-V could not replicate changes for virtual machine 'machinename': The connection with the server was terminated abnormally (0x00002EFE).

    I have a 3 node cluster that has replica setup to replicate to another cluster off-site.
    Suddenly one of the servers is not replicating with the error:
    Hyper-V could not replicate changes for virtual machine 'machinename': The connection with the server was terminated abnormally (0x00002EFE). (Virtual Machine ID CC0FD4CC-F9B7-4C68-ABE8-B7D52A87899F)
    All other servers are replicating fine so there cannot be a permissions or connectivity issue between the 2 clusters.
    This server has 2TB of data so I'd rather not have to start the replication again.
    Does anyone have any pointers?
    Thanks.

    Hi drensta,
    Based on my knowledge , "hyper-v replica broker " is needed for failover cluster replica .
    Here is a link for "Why is the "Hyper-V Replica Broker" required?"
    http://blogs.technet.com/b/virtualization/archive/2012/03/27/why-is-the-quot-hyper-v-replica-broker-quot-required.aspx
    Hope this hleps
    Best Regards
    Elton Ji
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • "The connection with the server was reset" Error Message

    I am trying to download iTunes 8 for my new iPod that i got today.
    However, when i am downloading the iTunesSetup.exe file, the file downloads normally until it gets to about 10.5MB.
    After this a message pops up saying:
    "Internet Explorer cannot download iTunesSetup.exe from appldnld.apple.com.edgesuite.net.
    The connection with the server was reset"
    Has anyone else had this problem, if yes how do i resolve it???
    Thanks in advance for any help!

    Hi!
    Im using Windows 7.... I tried looking for the Wireless Config - but it isn't in the Services options!
    So, what can I do now?
    Thanx

  • The connection to the server was reset while the p...

    For the past week i keep getting the below error page every minute or so--->
    "The connection to the server was reset while the page was loading.
      The site could be temporarily unavailable or too busy. Try again in a few
        moments.
      If you are unable to load any pages, check your computer's network
        connection.
      If your computer or network is protected by a firewall or proxy, make sure
        that Firefox is permitted to access the Web."
    When i refresh the page it usually goes through as normal or does it again and needs to refresh again. Seems like every 1-2 mins i get a period of 15-20 secs of this.
    Is this the connection droppping or another error altogether??  If its not actually the connection dropping will this affect gaming online (xbox 360, Battlefield 3)?
    I believe Infinity is rolling out in my village (ST8  7__) (Biddulph Moor) next month. Could this be the reason?  Its not the sites/pages im visiting as its happening no matter what site i visit.
    I have done the quiet line test (17070) and thats fine.  My hub details and speedtest is below. As far as i know we connected to the master socket.
    Any advice will be greatly appreciated
    I cant do the btspeedtest as the bill payer is away so i cant find out the Serice ID.  I have done a test on speedtest.net if thAt is any good
    [URL=http://www.speedtest.net][IMG]http://www.speedtest.net/result/1862765754.png[/IMG][/URL]
    ADSL line status Connection information
    Line state
    Connected
    Connection time
    2 days, 15:46:50
    Downstream
    2,643 Kbps
    Upstream
    1,031 Kbps
    ADSL settings
    VPI/VCI
    0/38
    Type
    PPPoA
    Modulation
    ITU-T G.992.5
    Latency type
    Interleaved
    Noise margin (Down/Up)
    10.1 dB / 5.3 dB
    Line attenuation (Down/Up)
    55.5 dB / 35.1 dB
    Output power (Down/Up)
    0.0 dBm / 12.8 dBm
    Loss of Framing (Local)
    0
    Loss of Signal (Local)
    0
    Loss of Power (Local)
    0
    FEC Errors (Down/Up)
    0 / 13
    CRC Errors (Down/Up)
    3101 / N/A
    HEC Errors (Down/Up)
    N/A / 11
    Error Seconds (Local)
    1281

    I dont believe so no. And the speed isnt an issue for me. I live in a village in the sticks so never had over 2.5mb. The issue is the error i get all the time. Ive had problems in the past where my connection would drop and i would have to wait to connect again before continuing. That was along time ago. This seems a different error. And is instantly fixed a refresh.
    So if my connection doesnt actually drop will this affect online gaming?
    Could this error be due to infinity coming to my area next month?
    The reasn its an issue for me at the moment is because im a memeber of a few survey sites where i get paid to take surveys. This error causes me so much trouble. I i click a survey and this error occurs then i lose that survey.... so its actually preventing me from making money :-(
    I think we will be getting infinity at the end of april. But if this isnt anything to do with inifinty and is actually a problem with my line then im concerned this will continue.
    Since i heard a week or so ago inifinity was rolling out in my village in april this problem seems to have started. So im guessing its due to infinty.
    Could it be? and when infinity is running in my village could this problem cease?

  • How to show  an error Page in Weblogic when the server is down

    Hi ,
    I heard that every container has the facility to show an error page when the server is down and (when the request has arrived at that time ).
    Please tell me how to configure this in BEA weblogic ??
    Thanks .

    Hi,
    From my understanding weblogic dose not provide the thing which you are asking for, reason is given below.
    - An application is deployed only on managed server one (MS-1)
    - Now if the request comes to the server (MS-1) when it was running and then for some reason MS-1 goes down then weblogic server would be able to send any response back to the client as its down.
    - Hence nothing can be done as the request object is been lost when the server goes down or even cant redirect to an error page as for doing that too the server has to be up and running.
    However there are other way round which can help you overcome this issue as shown below
    - Use Clusters with few managed servers in it which gives you high availability and load-balancing.
    - Use any web servers like Apache in front of weblogic servers.
    Using the above things you can also use customized HTTP Error Responses with error-page element in web.xml and create your own error pages which can be re-directed for the web server side also. For more information go through the below links
    Topic: Customizing HTTP Error Responses
    http://download.oracle.com/docs/cd/E13222_01/wls/docs92/webapp/configurejsp.html#wp157884
    Topic: error-page
    http://download.oracle.com/docs/cd/E13222_01/wls/docs81/webapp/web_xml.html#1017571
    Topic: ErrorPage
    http://download.oracle.com/docs/cd/E12840_01/wls/docs103/plugins/plugin_params.html#wp1155425
    Hope above information helps you.
    Regards,
    Ravish

  • SSRS Report Manager error "Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 500"

    Hi All,
    I am getting error "Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 500"
    in one of my Test Environment when trying to run the SSRS 2012 report from report manager.
    Any clue why it is happening.
    Thanks Shiven:) If Answer is Helpful, Please Vote

    Hi All,
    Upon investigation found that there was no space (0 Byte is available) in E drive where underlying SQL DB is residing. 
    Once I cleared the space, report started working and above error was not displaying. 
    Thanks Shiven:) If Answer is Helpful, Please Vote

  • How can I disable incesant rambling alarm "The connection to the server was reset while the page was loading" in FF17?

    In using FF 17.0.1 in a WinXP/SP3 notebook (Acer) while traveling abroad I get unrelenting rambling and totally inconsequential display alarms "The connection to the server was reset while the page was loading." The page in question looks perfectly fine and there is NO problem whatsoever in its display. The only problem is this annoyingly useless alarm, which forces the screen display to the tab where the supposed error occurred when one is in a different tab -- in a couple of instances, this absolutely unnecessary, forced jump to a different tab has made me lose data being entered in a different tab.
    The notebook is extremely lean in its booting process -- no shared DLLs preloaded; no crapware; limited essential start-ups; trimmed unused or irrelevant services. The alarm occurs:
    (1) with FF and the OS in either normal or safe mode (i.e., both safe mode, both normal mode, or one safe mode and the other normal mode);
    (2) using different Western European ISPs;
    (3) using different DNS servers (either default European ones, or manually selected top-tier U.S. servers);
    (4) and with a number of different web pages (such as many in sites of news organizations) but not in all pages (for instance, none of the different Google server pages).
    The alarm does NOT occur browsing the same pages with either Chrome, Opera or IE.
    I have not been able to find a clearly marked entry for such an alarm in about:config, and am weary of start changing alarms settings blindly. The text of this alarm is not found in firefox.exe so it must be in one of its associated libraries. Given that this alarm is COMPLETELY WORTHLESS, especially in its manic wanton conditions, can some one give me an informed opinion on how to disable it? TIA

    Thanks for responding, David. Using <Esc> and <CtrlW> might reduce the time in returning to the other tab, but does little when the triggering of a wanton alarm is very frequent. The connections I have used were extremely reliable and fast. I am using at this moment a 54 Mbps WiFi connection that lives up to its ratings in downloading & uploading data; yet, as shown in the attached image, I still get this worthless alarm. I do not know if this problem happens with my regular ISP since I have been using this tiny notebook only when traveling -- will test that once I am back mostly for curiosity, but even then if then the alarm were not triggered this would be of little consolation, since other browsers do not have the problem right now).
    As a moderator, I urge you to ask the Mozilla-powers-to-be why there is no way to turn off the alarm with, say, a true/false switch in about:config (mind you, there is still old-versions junk in this config list, so it isn't we are talking about amending the constitution). Complains about this fugly alarm can be traced in the web as far back as 2010 at least. Besides, what is the advantage of the alarm for the average user? When FF users are still posing amazingly basic questions in forums of Firefox or Mozilla support, such an alarm ought to be _off_ by default and should be an option of advanced settings menu. This annoyance shows how much the critical focus on keeping a simple GUI uncluttered by trivial or higher-level messages still needs to evolve for Firefox, which I have used it since it was known a Firebird. Guess will have to switch to Chrome now while abroad.
    Happy Holidays

  • How can we handle in flex application if the server is down?

    how can we handle in flex application if the server is down?

    You and me both. 
    As ambiguous as the original question was, I think he was just asking how to handle a server exception and I would suggest generally just using a Alert.show("your specific message (eg.  The server is currently unavailable)") in the place where you handle the fault return from your service or http call.  I'm sure there are more complicated messaging frameworks or approaches, but that seems to be enough for my apps.

  • Why Portal server goes down?

    Hi All,
             We are currently running on EP7, SP9.
             Suddenly one day our portal server went down.We checked the logs but could not find the correct information. Can any one of help me as why our server went down at that particular time.
    Please reply as soon as possible.
    Thanks in Advance.
    Regards,
    Ramalakshmi.S

    Portal server goes down for several reasons:
    1) Check the portal license. If the trial license expired, it goes down every 30 mins.
    2) Check your J2EE settings. If the portal cannot handle the user requests, you should increase the MaxThreadCount and other parameters.
    3) Check the trace files at D:\usr\sap\<SID>\JC01\j2ee\cluster\server0\log
    Hope this helps.
    ~Yasin

Maybe you are looking for

  • Not able to read the wsdl file from server Premature EOF encounter

    Hi All, I am facing issue while accessing a web Service from server. Here is the clear view about it. I created a simple SyncBpel process in a composite and deployed in to the server and it is working fine. Later i created a new Asyn bpel process in

  • Sales Areas

    Dear SapGurus, i am having four Disributon channels saying D1,D2,D3 and D4. No common customer will exits in any distribution channel. there are four devisinons say C1,C2,C3 and C4. there some common customer will do the business in All divisions. i

  • Firefox 4 is loading multiple windows

    After updating to Firefox 4, in addition to loading my window with all my saved tabs from the last session, it also loads additional multiple windows with a single blank tab. How do I make it stop doing this?

  • Invoice prints with a different billing document number

    Hi all, When I try to print a billing document using TCODE VF03, it prints a different billing document. For example, if I print the billing document number XXXXXXXXX1, it prints the doc no XXXXXXXXX2. Please let me know the reason for this. Thanks a

  • What is 'OSX/Conduit.A' malware? and why is it affecting my file 'ct_scripting.rsrc'?

    I am running Virus Barrier X6 on my MacBook Pro with OSX 10.8.5.  I got a message that a virus was detected and that file ct_scripting.rsrc was infected with the 'OSX/Conduit.A' malware.  Virus Barrier appears unable to repair the file and my only op