hi guys,
i have an unusual problem where i am able to access the admin panel, then for some reason, it drops off and can no longer access it, when i run netstat i can still see its there waiting for connections, sometimes i even get the CloudFlare 524 Error because the pages takes too long to respond and cloudflare thinks the web server is offline, or admin 7080 page responds with
[ This site can’t be reached - server-ip took too long to respond ], the server is a fresh install, all pages work very fast, its a 2vcpu server with digitalocean, the only thing i still need to optimize is the child processes.
a similar thing happens with loading normal webpages where it sits in a loading loop and the server doesnt seem to respond like its busy but when you check htop there is low cpu usage
and if you do a curl test, it redirects http to https which is correct
and the curl response for https is correct because it doesnt have an ssl certificate
if i open a new browser, or if i go incognito, it doesnt make a difference, iptables is clear and server doesnt have any front facing firewalls enabled, and ufw firewall is also disabled
im stumped as to what is causing this
i have an unusual problem where i am able to access the admin panel, then for some reason, it drops off and can no longer access it, when i run netstat i can still see its there waiting for connections, sometimes i even get the CloudFlare 524 Error because the pages takes too long to respond and cloudflare thinks the web server is offline, or admin 7080 page responds with
[ This site can’t be reached - server-ip took too long to respond ], the server is a fresh install, all pages work very fast, its a 2vcpu server with digitalocean, the only thing i still need to optimize is the child processes.
a similar thing happens with loading normal webpages where it sits in a loading loop and the server doesnt seem to respond like its busy but when you check htop there is low cpu usage
Code:
netstat -na | grep 7080
tcp 0 0 0.0.0.0:7080 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:7080 127.0.0.1:58606 TIME_WAIT
udp 0 0 0.0.0.0:7080 0.0.0.0:*
Code:
curl -i http://localhost:7080
HTTP/1.0 301 Moved Permanently
Location: https://localhost:7080/
Cache-Control: private, no-cache, max-age=0
Pragma: no-cache
Server:LiteSpeed
Content-Length: 0
Connection: Close
Code:
curl -i https://localhost:7080
curl: (60) SSL certificate problem: self-signed certificate
More details here: https://curl.se/docs/sslcerts.html
curl failed to verify the legitimacy of the server and therefore could not
establish a secure connection to it. To learn more about this situation and
how to fix it, please visit the web page mentioned above.
im stumped as to what is causing this
Last edited: