Good night, I decided to create this topic because I have a problem and I can not find a solution, I'm trying to host the server in a cloud in OVH. the server installs and starts normally but I can not get into the world. no player can either. The game reports that it can not connect to the server. I used a tool to check and it says that port 19123 is closed, but the server does not have an active firewall and I have manually added the ports in IPTables, but I still do not succeed. I've tried using other ports, disable the firewall, tried out a PHP application, and it works normally, but the server does not allow access through the game. I used: https://www.yougetsignal.com/tools/open-ports/ and this tool says that the door is closed, but I already applied all possible procedures to open doors and nothing worked. Steps to reproduce the issue Unfortunately, I was not able to understand the cause of this problem. OS and versions PocketMine-MP: a4ca3f1 Steadfast2: Hydreon / Steadfast2 @ 42fd893 PHP: 7.2.0RC4 Server OS: CentOS 7.4.1708 Game version: PE / Win10 Plugins Not have plugins Debug logs not show errors.
Hello thanks for responde, i'm aplly this commnds on iptables and working: # iptables -F # iptables -X # iptables -t nat -F # iptables -t nat -X # iptables -t mangle -F # iptables -t mangle -X # iptables -P INPUT ACCEPT # iptables -P OUTPUT ACCEPT
This forum isn't for Steadfast, only PMMP. And don't disable the firewall... On Centos7 it's best to use firewalld instead of messing with iptables: https://www.digitalocean.com/commun...set-up-a-firewall-using-firewalld-on-centos-7
If you use CentOS 7, try these commands sudo firewall-cmd --zone=public --add-port=19132/udp --permanent sudo firewall-cmd --reload reboot your server. Ports should be open @mario0582