Comments - Using the S3 Storage Engine

3 years, 6 months ago Patrick Laimbock
This comment has the status of 'removed' and can only be seen by you.

'Troubleshooting S3 on SELinux': disabling SELinux is generally not advisable and it is possible to allow MariaDB to connect to ports other than 3306

Search for the ports allowed for MariaDB:

$ sudo semanage port -l | grep mysqd_port_t
mysqld_port_t                tcp   1186, 3306, 63132-63164

Say you want to allow MariaDB to connect to port 32768:

$ sudo semanage port -a -t mysqld_port_t -p tcp 32768

Search again for the ports allowed for MariaDB:

$ sudo semanage port -l | grep mysqd_port_t
mysqld_port_t                tcp   32768,1186, 3306, 63132-63164

Connecting to port 32768 is now allowed for MariaDB.

 
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.