If you are unable to access CyberPanel on port 8090, here are veriou steps you can take to help you troubleshoot and resolve the issue:
Ensure that CyberPanel is configured to listen on port 8090:
The server's firewall might be blocking port 8090:
Additionally, if you're using a hosting provider with its own firewall (e.g., AWS, Vultr), ensure that port 8090 is allowed in their security settings.
If the above steps don't resolve the issue, try restarting CyberPanel services:
sudo systemctl restart lscpd<br>
If you encounter an error stating that lscpd.service is not found, it might indicate an incomplete installation or a misconfiguration. In such cases, consider reinstalling CyberPanel or seeking further assistance.
If you have tried all these steps and still can not access CyberPanel on port 8090, please provide more details about any error messages you are encountering, and I'll be glad to assist further.
1. Verify CyberPanel's Listening Port
Ensure that CyberPanel is configured to listen on port 8090:
- Access the Configuration File:
- SSH into your server.
- Open the bind configuration file:
sudo nano /usr/local/lscp/conf/bind.conf<br> - Confirm that the port is set to 8090. If it's different, change it back to 8090.
- Restart Services:
- After saving changes, restart the necessary services:
sudo systemctl restart lsws<br>sudo systemctl restart lscpd<br>
- After saving changes, restart the necessary services:
2. Check Firewall Settings
The server's firewall might be blocking port 8090:
- For firewalld:
sudo firewall-cmd --permanent --zone=public --add-port=8090/tcp<br>sudo firewall-cmd --reload<br> - For iptables:
sudo iptables -I INPUT -p tcp --dport 8090 -j ACCEPT<br>sudo netfilter-persistent save<br>
Additionally, if you're using a hosting provider with its own firewall (e.g., AWS, Vultr), ensure that port 8090 is allowed in their security settings.
3. Restart CyberPanel Services
If the above steps don't resolve the issue, try restarting CyberPanel services:
sudo systemctl restart lscpd<br>
If you encounter an error stating that lscpd.service is not found, it might indicate an incomplete installation or a misconfiguration. In such cases, consider reinstalling CyberPanel or seeking further assistance.
4. Verify Network and DNS Settings
- Network Connectivity: Make sure that your server is accessible from your local machine. You can use tools like ping or traceroute to test connectivity.
- DNS Resolution: If you're accessing CyberPanel via a domain name, confirm that the domain correctly resolves to your server's IP address.
- Cloudflare Configuration: If you're using Cloudflare, try pausing it temporarily to see if it's causing the issue.
If you have tried all these steps and still can not access CyberPanel on port 8090, please provide more details about any error messages you are encountering, and I'll be glad to assist further.