[DiscordArchive] If you wish to make a server public using a docker install how do you make sure to keep your ac-data
[DiscordArchive] If you wish to make a server public using a docker install how do you make sure to keep your ac-data
Archived author: alca • Posted: 2022-03-02T01:29:53.352000+00:00
Original source
If you wish to make a server public using a docker install how do you make sure to keep your ac-databse secure from any break in attempts?
Archived author: Revision • Posted: 2022-03-02T01:33:45.597000+00:00
Original source
You don't allow any outside access to it or the container
Archived author: alca • Posted: 2022-03-02T01:36:04.922000+00:00
Original source
is there a settings file i need to modify to make sure this happens? i'm a noob at this
Archived author: Revision • Posted: 2022-03-02T01:37:03.813000+00:00
Original source
I don't know about docker but if you use, for example, a router you don't have to nor should you open the port to the mysql server to begin with.
Archived author: alca • Posted: 2022-03-02T01:38:49.998000+00:00
Original source
Ah I see, so your database port can stay closed as long as you only want to access it through the PC that hosts the server and no one should have the means to affect it in any way, correct?
Archived author: Revision • Posted: 2022-03-02T02:06:23.418000+00:00
Original source
Well, there's local and remote access. Remote access is what you don't want. It's okay to let users on your network, namely you, access it. It's just access from outside your network that you do not want.
Archived author: Revision • Posted: 2022-03-02T02:07:07.269000+00:00
Original source
That is one of the reasons why I always tell people to create their users with specific IP requirements rather than allow all IPs since it limits the possibility of bad things to happen.
Archived author: alca • Posted: 2022-03-02T02:31:45.728000+00:00
Original source
Thanks a bunch for clearing that up, there are so many options and config files floating around that I wasn't sure what needed changing