Directadmin OpenLiteSpeed WebAdmin Console by port 7080 - Error 404 Not Found The resource

#1
Before, OpenLiteSpeed WebAdmin Console was working fine, but after upgrading openlitespeed to the latest version,

I get the following error , when I want to enter OpenLiteSpeed WebAdmin Console by http://x.x.x.x:7080 or even by https :

404 Not Found The resource requested could not be found on this server!

It seems, the firewall is working fine and requests are forwarding to the OpenLiteSpeed via port 7080, but the required files can not be found !

Any Solution?
 
#3
Hello, Thanks for your reply.

The result of:
Code:
curl -IkL https://127.0.0.1:7080
is:
curl: (7) Failed to connect to 127.0.0.1 port 7080: Connection refused
But, if I use my server IP instead of 127.0.0.1, I get error 404:
Code:
curl -IkL https://my_server_ip:7080

HTTP/2 404
date: Mon, 18 Jan 2021 07:45:01 GMT
server: LiteSpeed
alt-svc: quic=":7080"; ma=2592000; v="43,46", h3-Q043=":7080"; ma=2592000, h3-Q0          46=":7080"; ma=2592000, h3-Q050=":7080"; ma=2592000, h3-29=":7080"; ma=2592000,           h3-32=":7080"; ma=2592000
Any idea ?
 
#5
I edited the address from "my_server_ip" to "0.0.0.0" in /usr/local/lsws/admin/conf/admin_config.conf and then tried "curl -IkL https://127.0.0.1:7080" ,it worked but again I got error 404 ! Bellow you can see what I did:

/usr/local/lsws/admin/conf/admin_config.conf :
Code:
listener adminListener {
  address           0.0.0.0:7080
  secure            1
  keyFile    /usr/local/lsws/ssl.key/server.key
  certFile    /usr/local/lsws/ssl.crt/server.crt.combined
  clientVerify    0
}
check listening port:
Code:
> netstat -lntup | grep "7080"
tcp        0      0 0.0.0.0:7080            0.0.0.0:*               LISTEN      8649/openlitespeed
udp        0      0 0.0.0.0:7080            0.0.0.0:*                           8649/openlitespeed
udp        0      0 0.0.0.0:7080            0.0.0.0:*                           8649/openlitespeed
The result:
Code:
> curl -IkL https://127.0.0.1:7080
HTTP/2 404
date: Thu, 21 Jan 2021 01:38:16 GMT
server: LiteSpeed
alt-svc: quic=":7080"; ma=2592000; v="43,46", h3-Q043=":7080"; ma=2592000, h3-Q046=":7080"; ma=2592000, h3-Q050=":7080"; ma=2592000, h3-29=":7080"; ma=2592000, h3-32=":7080"; ma=2592000
 
Top