📖 ~1 min read
Table of contents
Symptom & Impact
httpd fails to bind non-standard port
Environment & Reproduction
After moving Apache to a custom port without SELinux labels.
Root Cause Analysis
http_port_t lacks the new port so targeted policy denies bind.
Quick Triage
Check denials with ausearch -m AVC -ts recent and getsebool -a | grep httpd.
Step-by-Step Diagnosis
Run: sudo ausearch -m AVC | audit2why; semanage port -l | grep http_port_t.

Solution – Primary Fix
sudo semanage port -a -t http_port_t -p tcp ; sudo systemctl restart httpd.
Still having issues? Our IT Consulting team can diagnose and resolve this for you. Get in touch for a free consultation.

Solution – Alternative Approaches
Use setsebool httpd_can_network_connect on for outbound, or relabel the listening socket.
Verification & Acceptance Criteria
httpd starts cleanly and ss -ltnp shows the new port owned by httpd.
Rollback Plan
semanage port -d -t http_port_t -p tcp and revert httpd.conf Listen directive.
Prevention & Hardening
Codify port labels in an Ansible role and pre-validate with audit2allow.
Related Errors & Cross-Refs
Pairs with permission denied and Address already in use errors.
Related tutorial: View the step-by-step tutorial for centos-stream-9.
View all centos-stream-9 tutorials on the Tutorials Hub →
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
SELinux Notebook and httpd_selinux(8) man page.
Need Expert Help?
If you cannot resolve this yourself, our team offers hands-on Server Management, Managed IT Services, and flexible Support Plans. Contact us today — we respond within one business day.