Resource Manager - Custom Server - enable UFW?

Hello, I have encountered an interesting problem.
There is a working local resource server Ubuntu, Webmin, Coolify, and other software installed.
When connecting as root in Resource Manager - Custom Server, the connection to the Webmin service:10000 was lost.
When the problem was analyzed, it became clear that UFW had been activated:

ufw status

22/tcp ALLOW Anywhere
80/tcp ALLOW Anywhere
443 ALLOW Anywhere
22/tcp (v6) ALLOW Anywhere (v6)
80/tcp (v6) ALLOW Anywhere (v6)
443 (v6) ALLOW Anywhere (v6)

ufw was not used before the connection.
What does the Wappler Resource Manager do to the server when it connects, and if it does anything, how can it be managed?

Open a terminal:

sudo ufw allow from 127.0.0.1 to any port 10000 proto tcp

Then:

sudo ufw reload

Finally check everything:

sudo ufw status numbered

Or you can just turn off UFW:

sudo ufw disable
1 Like

Thanks, I've already fixed it. I just couldn't imagine that the Resource Manager could control the firewall, and it came as a surprise. What else is there?

That may require clarification from @George? Unless something has changed in the last release? I'm running 7.3.5.

I'm also an Ubuntu user and UFW is not enabled by using the Wappler Resource Manager.

If you setup the server using Resource Manager and its system check, all the needed software like docker is installed, says updates are enabled and the firewall is also enabled for those ports to enforce security.

1 Like

Thank you @George
That is, if we connect to a new server, Resource Manager will install Docker itself, will raise the UFW firewall itself? In other words, connecting to a server with bare Ubuntu - Resource Manager will create a combat server with sufficient security settings, are you planning to configure the Timezone server from Resource Manager or any other scripts controlled by Wappler’s?
This is very important information.

Yes the is what Wappler’s system check option will do on existing servers or when creating a new server from the Resource Manager

1 Like