Enable MySQL/Any ports in Selinux/Semanage
1. Verify the ports in semanage
sudo /usr/sbin/semanage port -l | grep mysql
2. If you don’t see port number in the
list then execute below command. In my case, I’m adding 33061 port.
sudo /usr/sbin/semanage port -a -t
mysqld_port_t -p tcp 33061
Comments
Post a Comment