Webmail wont start

ERROR: WEBMAIL: cannot open listener ‘0.0.0.0:80’ (Transport endpoint is not connected)
brnd new to axigen, just installed on ubuntu 20.04, get above error when try to start.
webadmin works well

Hello,

Most probably the port 80 is used by another service like Apache (HTTPD) for example.

To find which service is using the port 80 you may use “netstat” or “ss” utility:

netstat -tlpn | grep ":80"

ss -tlpn | grep ":80"

BR