https://drive.google.com/file/d/1hHlDLCziKo0E-mrut9W7GlK8A3LX2ElV/view?usp=sharing
💡 Critical Insight:
Cockpit uses a socket activation model—service starts only when accessed (port 9090).
# Install Cockpit core
sudo dnf install -y cockpit
# Optional: Add virtual machine management
sudo dnf install -y cockpit-machines
# Enable and start (socket activation)
sudo systemctl enable --now cockpit.socket
sudo systemctl status cockpit.socket
⚠️ Why Socket?:
- Efficiency: Service starts only when accessed
- Security: No persistent process running
- Scalability: Handles multiple connections efficiently