Troubleshooting "http://<hostname>:<port> can't reach this page" error with SAP Web Dispatcher

Manuel Cavazos CloudPA 0 Reputation points
2024-07-26T14:51:42.7066667+00:00

I am using SAP Web Dispatcher to load balance requests, but when I try to access my service through "http://<hostname>:<port>", I get an error message saying "can't reach this page". What could be causing this error and how can I troubleshoot it?

Windows Server 2019
Windows Server 2019
A Microsoft server operating system that supports enterprise-level management updated to data storage.
3,797 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. MotoX80 34,431 Reputation points
    2024-07-28T13:36:01.0133333+00:00

    RDP to <hostname> and open Powershell with the run as administrator option.

    Run this to verify that you can connect to the web server.

    Invoke-WebRequest http:\\localhost:8888         # replace 8888 with your port number
    

    If you cannot connect, run this command and look for your port number and the program name for "SAP Web Dispatcher". Verify that the program is running and listening on the correct port.

    Get-NetTCPConnection -State Listen | Sort-Object LocalPort | Format-table -Property LocalPort,@{L="ProcessName";E={(get-process -id $_.OwningProcess).ProcessName}}
    

    If everything looks ok, then temporarily disable the Windows firewall on the server and from a client PC run this to test connectivity.

    Test-NetConnection -ComputerName <hostname> -Port <port>  # use your name and port
    
    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.