unable to connect in a browser
I have wazuh on linode cloud. I can ping the IP address but I can not access it through a web browser.
8 Replies
80 is open but its been loading for 10mins now
Also, receiving an doing an ICMP Echo Request/Response (aka ping) is only indicative that the VMs networking is working (somewhat) properly.
ICMP operates at a very low level in the networking stack…far below TCP protocols like http/https. ICMP needs no "server" to be able to respond. TCP/UDP protocols need some other entity to "listen" in order to be able to respond.
If you don't have that server (in the case of http/https, that would be apache2, nginx, etc….properly configured), your client (in the case of http/https, your browser) will get no response. You will also get no response (as @acanton77 properly suggests) if some other entity (i.e., your firewall) is blocking the traffic (at a much lower level than even IP).
Your networking lesson for the day…
-- sw
now i am getting "The connection has timed out"
I wrote:
If you don't have that server (in the case of http/https, that would be apache2, nginx, etc….properly configured), your client (in the case of http/https, your browser) will get no response.
You need to check your server configuration. I suspect that's the culprit.
-- sw
it works now. thanks
I am getting this now "SSL_ERROR_NO_CYPHER_OVERLAP"
TLS (aka SSL) takes some effort to set up. It doesn't happen by magic.
- Do you have a certificate?
- Is it deployed properly?
See: https://blog.runcloud.io/ssl-error-no-cypher-overlap/
-- sw