I've got a strange issue on Ubuntu 20.04.1 LTS at Linode. I successfully installed OpenLiteSpeed, and
sudo /usr/local/lsws/bin/lswsctrl status
shows litespeed is running with PID xxxxxx.
PHP7.4 and MariaDB were already installed.
But I am getting timeouts at example.com:8088 and example.com:7080.
ufw status shows:
I'm using 65500 as the SSH port for security.
netstat -an | grep 7080 shows:
netstat -an | grep 8088 shows:
But I can't connect at example.com:8088 and example.com:7080.
I've read that I need to open the localhost port in ufw; is that true?
Is using 65500 as the SSH port for security a problem? Does it conflict with OpenSSH?
Do I need to stop Apache now? Or only when I change OpenLiteSpeed to port 80 and 443?
Thanks!
sudo /usr/local/lsws/bin/lswsctrl status
shows litespeed is running with PID xxxxxx.
PHP7.4 and MariaDB were already installed.
But I am getting timeouts at example.com:8088 and example.com:7080.
ufw status shows:
Code:
65500 ALLOW Anywhere
443 ALLOW Anywhere
443/tcp ALLOW Anywhere
7080/tcp ALLOW Anywhere
8088/tcp ALLOW Anywhere
OpenSSH ALLOW Anywhere
80/tcp ALLOW Anywhere
65500 (v6) ALLOW Anywhere (v6)
443 (v6) ALLOW Anywhere (v6)
443/tcp (v6) ALLOW Anywhere (v6)
7080/tcp (v6) ALLOW Anywhere (v6)
8088/tcp (v6) ALLOW Anywhere (v6)
OpenSSH (v6) ALLOW Anywhere (v6)
80/tcp (v6) ALLOW Anywhere (v6)
netstat -an | grep 7080 shows:
Code:
tcp 0 0 0.0.0.0:7080 0.0.0.0:* LISTEN
udp 0 0 0.0.0.0:7080 0.0.0.0:*
udp 0 0 0.0.0.0:7080 0.0.0.0:*
unix 3 [ ] DGRAM 17080
Code:
tcp 0 0 0.0.0.0:8088 0.0.0.0:* LISTEN
I've read that I need to open the localhost port in ufw; is that true?
Is using 65500 as the SSH port for security a problem? Does it conflict with OpenSSH?
Do I need to stop Apache now? Or only when I change OpenLiteSpeed to port 80 and 443?
Thanks!