π ~1 min read
Table of contents
Symptom & Impact
Admins cannot access Cockpit on port 9090 for remote management tasks.
Environment & Reproduction
Cockpit package installed but socket unit disabled or blocked.
systemctl status cockpit.socket
Root Cause Analysis
Socket activation was never enabled, or firewall denies cockpit service traffic.
Quick Triage
Check package, socket state, and firewalld service list.
dnf list installed cockpit
systemctl is-enabled cockpit.socket
firewall-cmd --list-services
Step-by-Step Diagnosis
Review socket activation logs and listening ports.
journalctl -u cockpit.socket -n 80
ss -ltnp | grep 9090

Solution – Primary Fix
Enable cockpit socket and allow cockpit service in firewall.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
sudo systemctl enable --now cockpit.socket
sudo firewall-cmd --permanent --add-service=cockpit
sudo firewall-cmd --reload

Solution – Alternative Approaches
Access Cockpit through SSH port forwarding if direct exposure is restricted.
Verification & Acceptance Criteria
Port 9090 listens and web login page loads securely.
ss -ltnp | grep 9090
curl -kI https://localhost:9090
Rollback Plan
Disable cockpit.socket and remove firewall service if not needed.
sudo systemctl disable --now cockpit.socket
sudo firewall-cmd --permanent --remove-service=cockpit
Prevention & Hardening
Restrict Cockpit access with trusted zones and MFA-backed identity controls.
Related Errors & Cross-Refs
May overlap with TLS certificate warnings and PAM policy lockouts.
Related tutorial: View the step-by-step tutorial for oracle-linux-10.
View all oracle-linux-10 tutorials on the Tutorials Hub β
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
Cockpit setup and hardening documentation for enterprise Linux.
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.