โ03-29-2022 02:54 PM
I manage a silly dedicated game server box for me and my buddies to host games on. We kept getting hundreds of auth requests daily so we decided to change our RDP port. My buddy said he was going to do this and he successfully changed the RDP port. He however, forgot to open the firewall ports. haha
Good thing we had the JC agent installed.. I was able to issue a powershell command to open the RDP port.
New-NetFirewallRule -DisplayName 'RDP Port' -Profile 'Private' -Direction Inbound -Action Allow -Protocol TCP -LocalPort port-number
โ03-29-2022 07:45 PM - edited โ03-29-2022 07:46 PM
Oof... Let me tell you lol. The number of times I've accidentally closed port 22 or accidentally blocked our IP then had to either use the JC agent or the AWS console to get back in is far too many. It's a really good thing we don't look at bash history when determining raises ๐
โ03-30-2022 11:07 AM
What's the game-of-the-moment @BenGarrison?!
I have a Docker host I'll spin up a container on occasionally to host a dedicated server when it makes sense for the squad. Makes cleanup a breeze once the game fizzles out and we move on!
โ03-30-2022 01:34 PM
Been meaning to explore Docker. But we currently play Squad
โ03-30-2022 05:41 PM
Docker is really really nice. Some of our developers use it, but I'd like to get more of our devs using it.
โ03-30-2022 06:33 PM
I'll let you know what I find out. Any suggestions on where to start?
โ03-31-2022 02:12 PM
I started with just hosting a site with a database. So spinning up an Apache2/httpd container and a MariaDB container. The Docker Hub is a good resource for finding the configuration options for containers!
New to the site? Take a look at these additional resources:
Ready to join us? You can register here.