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

Webadmin unreachable (server not found)

I was updating a new upgrade install of V5.011, I restored the (V4) backup and it was in the process of downloading the up2date packages (5.012, 5.013) when webadmin hung & IE gave server not found, I rebooted after some minutes but still the same result - no response to https://my.ip.add.ress, but ping is OK & the FW is passing traffic.  looking at other posts I have restarted the httpd deamon and checked the config and the local network is in the 'settings' file.  I have run 'netstat -a' but what am I looking for to check that httpd is running?


This thread was automatically locked due to age.
Parents
  • enter:
     Code:
    gateway:/root # netstat -ap | grep https


    you will get something like this:
    Code:

    tcp        0      0 *:https                 *:*                     LISTEN      431/httpd  



    this will tell you that there is something listening on port 443 (https), the option -p displays the PID/Program name associated with that port. in this case it is httpd. 
    if you get an empty response to netstat -ap, then you know that there is nothing listening on the https-port.
Reply
  • enter:
     Code:
    gateway:/root # netstat -ap | grep https


    you will get something like this:
    Code:

    tcp        0      0 *:https                 *:*                     LISTEN      431/httpd  



    this will tell you that there is something listening on port 443 (https), the option -p displays the PID/Program name associated with that port. in this case it is httpd. 
    if you get an empty response to netstat -ap, then you know that there is nothing listening on the https-port.
Children
  • Well https is listening, but it seems to be on port 408. The line ends 408/httpd and putting that port number on the end ofthe URL (https://10.10.10.10:408) still doesn't work!
  • no. 408 is the PID (process ID). 
    this has nothing to do with the port the httpd is listening on.
    *:https 408/httpd reads like this:
    a process with the id 408, called httpd is listening on any interface available on the "https-port" (which is 443).

    now that we confirmed that there is a webserver listening, check if the webadmin is running. check your packet-filter logs, maybe you have locked yourself out of your box. try a different browser. check the httpd-logfile for any error-messages.
  • Grrr sorted it...
    I had got the create SSL cert and install SSL cert in the wrong order so the one in the browser didn't match... A more explicit error msg would have been useful (but probably less secure!).

    whoops!