This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Upgrade to 6.1.2.115 lost core console access

After upgrading 3 cores to 6.1.2.115, two had no problems, but the third responds with "Error occurred during request execution Go to Home Page - Contact Support" when attempting to open Core Console GUI. Ran "Repair" twice, and re-booted, without success. Performing a "Get-ActiveJobs -all" in Powershell returns "Unable to connect to host localhost:8006. The server is either offline or unreachable." Tried with 3 different browsers, same results. All Services show as running.

Parents
  • Hi douglas.murphy:
    Sorry for the issues you have experienced. I have forwarded your post to our management for investigation. By all generally accepted metrics, our support team is one of the best in the business. Your experience as you described it will analyzed and addressed.


    On the technical side, there is no connection between IIS and Rapid Recovery. Rapid Recovery uses its own proprietary web browser. To be complete, IIS is used only on DL appliances to show the Appliance Tab (and even this is going away). BTW -- if you have a DL appliance you need to run the latest RUU update before updating Rapid Recovery.


    However, your error message "127.0.0.1:8006" indicates a possible listener issue which in turn relates to Windows.  Listening should be on 0.0.0.0:8006. To check if indeed it is the case open an elevated command prompt and run:


    C: \> netstat -nab | findstr 8006
    If the reply is  
    TCP    127.0.0.1:8006             0.0.0.0:0              LISTENING
    It means that you are facing the issue I mentioned above.


    Use RegEdit to navigate to
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\HTTP\Parameters\ListenOnlyList
    which is a Regmultisz value.
    If the value is 127.0.0.1, replace it with 0.0.0.0. This MUST be the only value in the list.
    If the ListenOnlyList value doesn't exist, it means that the default one (0.0.0.0) is applied (and more troubleshooting is needed).


    Once the value is changed, you need to restart the HTTP service. Since it has multiple dependencies, you can do it from PowerShell as shown below:


    PS C:\> restart-service HTTP -passthru -force

    Hope that this helps.
    Please let us know how it works for you.

Reply
  • Hi douglas.murphy:
    Sorry for the issues you have experienced. I have forwarded your post to our management for investigation. By all generally accepted metrics, our support team is one of the best in the business. Your experience as you described it will analyzed and addressed.


    On the technical side, there is no connection between IIS and Rapid Recovery. Rapid Recovery uses its own proprietary web browser. To be complete, IIS is used only on DL appliances to show the Appliance Tab (and even this is going away). BTW -- if you have a DL appliance you need to run the latest RUU update before updating Rapid Recovery.


    However, your error message "127.0.0.1:8006" indicates a possible listener issue which in turn relates to Windows.  Listening should be on 0.0.0.0:8006. To check if indeed it is the case open an elevated command prompt and run:


    C: \> netstat -nab | findstr 8006
    If the reply is  
    TCP    127.0.0.1:8006             0.0.0.0:0              LISTENING
    It means that you are facing the issue I mentioned above.


    Use RegEdit to navigate to
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\HTTP\Parameters\ListenOnlyList
    which is a Regmultisz value.
    If the value is 127.0.0.1, replace it with 0.0.0.0. This MUST be the only value in the list.
    If the ListenOnlyList value doesn't exist, it means that the default one (0.0.0.0) is applied (and more troubleshooting is needed).


    Once the value is changed, you need to restart the HTTP service. Since it has multiple dependencies, you can do it from PowerShell as shown below:


    PS C:\> restart-service HTTP -passthru -force

    Hope that this helps.
    Please let us know how it works for you.

Children
No Data