OLS dashboard listing default listeners as un-linked

#1
Even though OLS is listening to 80 and 443, the OLS dashboard shows the listeners as un-linked as seen in the following screenshot:

ols-listeners.png

Running lsof -i:80 returns:

Code:
COMMAND      PID   USER   FD   TYPE     DEVICE SIZE/OFF NODE NAME
litespeed 428013   root    8u  IPv4 3689148601      0t0  TCP *:http (LISTEN)
litespeed 428017 nobody    8u  IPv4 3689148601      0t0  TCP *:http (LISTEN)
Running lsof -i:443 returns:

Code:
COMMAND      PID   USER   FD   TYPE     DEVICE SIZE/OFF NODE NAME
litespeed 428013   root    9u  IPv4 3786194857      0t0  TCP *:https (LISTEN)
litespeed 428013   root   24u  IPv4 3794258109      0t0  UDP *:443
litespeed 428013   root   27u  IPv4 3794258113      0t0  UDP *:443
litespeed 428017 nobody    9u  IPv4 3786194857      0t0  TCP *:https (LISTEN)
litespeed 428017 nobody   24u  IPv4 3794258109      0t0  UDP *:443
litespeed 428017 nobody   27u  IPv4 3794258113      0t0  UDP *:443
What is causing the dashboard to display the listeners as un-linked and how can I fix it?
 
#2
A graceful restart of OLS should take care of that, it sometimes occurs on my servers as well (though the listeners and vhosts are fine)... does the logs reveal anything?
 
#3
A graceful restart of OLS should take care of that, it sometimes occurs on my servers as well (though the listeners and vhosts are fine)... does the logs reveal anything?
I have tried a graceful restart, systemctl restart lsws as well as rebooting the server too. And the logs are not indicating anything wrong unfortunately.
 
Top