First time here? Check out the FAQ!
![]() | 1 | initial version |
It is a SELinux issue.
ausearch -c httpd
shows
type=AVC msg=audit(1498146726.488:879): avc: denied { name_connect } for pid=6299 comm="httpd" dest=35357 scontext=system_u:system_r:httpd_t:s0 tcontext=system_u:object_r:keystone_port_t:s0 tclass=tcp_socket permissive=0
Temporary set
setenforce 0
will make it temporary work until next reboot. If I understood correctly best would be opening a new question about this.
![]() | 2 | No.2 Revision |
It is a SELinux issue.
ausearch -c httpd
shows
type=AVC msg=audit(1498146726.488:879): avc: denied { name_connect } for pid=6299 comm="httpd" dest=35357 scontext=system_u:system_r:httpd_t:s0 tcontext=system_u:object_r:keystone_port_t:s0 tclass=tcp_socket permissive=0
Temporary setThis will make it work:
setenforce 0setsebool -P httpd_can_network_connect 1
will make it temporary work until next reboot. If I understood correctly best would be opening a new question about this.