How to install Cockpit on CentOS 7

Share on Social Media

Learn how to install Cockpit on CentOS 7 with our step-by-step guide. Simplify your server management by setting up Cockpit on your CentOS 7 server efficiently. #centlinux #linux #cockpit

What is Cockpit?

Cockpit is a Red Hat sponsored free and open-source software project. Cockpit is a Web UI (User Interface) that facilitates management and monitoring of a Linux server through a web browser. Besides regular operating system related management tasks, it also provides support for Docker, Kubernetes and KVM.  It is very easy to start containers, administer storage, configure networks, and inspect logs via Cockpit Web UI.

Cockpit is an open-source web-based server management tool designed to simplify the administration of Linux systems. It provides a user-friendly interface for managing various aspects of your server. Here are some key features and aspects of Cockpit:

How to install Cockpit on CentOS 7
How to install Cockpit on CentOS 7

Key Features of Cockpit

  1. Web-Based Interface:
    • Provides an intuitive, browser-based interface for managing your Linux server.
  2. System Monitoring:
    • Displays real-time system metrics such as CPU, memory, disk usage, and network activity.
  3. Service Management:
    • Allows you to start, stop, enable, or disable system services.
  4. Log Viewing:
    • Offers access to system logs to help you troubleshoot issues.
  5. User Management:
    • Enables you to manage user accounts, including creating, deleting, and modifying user permissions.
  6. Software Updates:
    • Facilitates the installation of system updates and software packages.
  7. Storage Management:
    • Provides tools for managing storage devices, partitions, and filesystems.
  8. Network Configuration:
    • Allows you to configure network interfaces, view network statistics, and manage firewall rules.
  9. Container Management:
    • Supports Docker and Podman for managing containers and container images.
  10. Remote Access:
    • Supports remote management of servers, making it easier to administer systems from different locations.
  11. Extensibility:
    • Offers a plugin architecture that allows you to extend its functionality with additional features.

Recommended Training: Linux Administration: The Complete Linux Bootcamp in 2025 from Andrei Dumitrescu, Crystal Mind Academy

3371848 9ea9 18

Common Use Cases

  • System Administrators: For managing and monitoring servers in both small and large environments.
  • Developers: For managing development environments and deployments.
  • IT Professionals: For overseeing multiple servers and performing routine maintenance tasks.

Cockpit is designed to be simple to use while providing powerful management tools, making it a great option for both beginners and experienced administrators.

Linux Server Specification

In this article, we will install Cockpit on CentOS 7 server and then add support in Cockpit for managing our Kubernetes cluster, Docker and Storage.

We have a CentOS 7 virtual machine with following specifications.

  • Hostname – kubemaster-01.example.com
  • IP Address – 192.168.116.160/24
  • Operating System – CentOS 7.6

The above server is the master node of a Kubernetes cluster. For information about Kubernetes configuration please refer to our previous article Install Kubernetes Cluster on CentOS 7.

Install Cockpit on CentOS 7

Connect with kubemaster-01.example.com using ssh as root user.

Cockpit is available through EPEL (Extra Packages for Enterprise Linux) yum repository. Therefore, we have to install epel-release first.

yum install -y epel-release

Rebuild cache of yum repositories.

yum clean all
yum makecache fast

Install cockpit using yum command.

yum install -y cockpit

Enable and start Cockpit service.

systemctl enable cockpit.socket
systemctl start cockpit.socket

Configure Linux Firewall

Allow Cockpit Service in Linux firewall.

firewall-cmd --permanent --add-service=cockpit
firewall-cmd --reload

Access Cockpit Web UI

Browse URL https://kubemaster-01.example.com:9090/ in a client’s browser. You may encounter a security certificate warning; just ignore it and continue.

CentOS 7 Cockpit Login 1
CentOS 7 Cockpit Login 1

Login as root user.

Cockpit - Systems 1
Cockpit – Systems 1

We are now at the system panel of Cockpit. We can monitor system performance here and modify a couple of settings like hostname, system time, etc.

Cockpit - Networking
Cockpit – Networking
Cockpit - Accounts
Cockpit – Accounts
Cockpit - Services
Cockpit – Services

We also have some other panels here like Logs, Networking, Accounts, Services, etc. However, we are installing Cockpit to control our Kubernetes cluster from here. Therefore, we have to add required functionality in Cockpit Web UI.

Install Cockpit Control Panels

Install following packages to add the Kubernetes and Docker control panels in Cockpit Web UI.

yum install -y cockpit-docker cockpit-kubernetes

Restart Cockpit service.

systemctl restart cockpit.socket

Cockpit Web UI will be disconnected due to restart of cockpit.service.

Cockpit - Disconnected
Cockpit – Disconnected

Click on Reconnect.

CentOS 7 Cockpit Login 2
CentOS 7 Cockpit Login 2

Login as root user.

Cockpit - Systems 2
Cockpit – Systems 2

Now you see some new controls on the right side of the console.

Click on Containers, it provides Docker related control panel.

Cockpit - Containers
Cockpit – Containers

Click on Cluster to manager Kubernetes cluster.

Cockpit - Kubernetes Cluster
Cockpit – Kubernetes Cluster 1
Cockpit - Kubernetes Cluster 2
Cockpit – Kubernetes Cluster 2

We can add more control panels in the same way.

You may have notice that the Cockpit lacks a storage control panel. It is because Cockpit do not install Storage panel by default.

Therefore, to add Storage related control panel in Cockpit Web UI, we have to install cockpit-storaged package using yum command.

yum install -y cockpit-storaged

Restart Cockpit service.

systemctl restart cockpit.socket

Reconnect again to Cockpit Web UI and you may find the Storage Panel there.

Cockpit - Storage Panel
Cockpit – Storage Panel

If you are installing on a KVM host then you must install cockpit-machines package to add a control panel to manage Virtual machines.

Frequently Asked Questions (FAQs)

1. Can Cockpit be installed on CentOS 7 without additional repositories?

Answer: Yes, Cockpit is included in the default CentOS 7 repositories, so no extra repositories are needed for basic installation. However, optional plugins might require enabling additional repositories like EPEL.

2. How do I install Cockpit on CentOS 7?

Answer: Cockpit can be installed using the default package manager. After installation, the service must be enabled and started to allow access via a web browser.

3. How do I access Cockpit after installation?

Answer: Cockpit is accessed through a web browser by connecting to the server’s IP address on port 9090, using HTTPS. Authentication requires a system user with administrative privileges.

4. Why can’t I access Cockpit after installation?

Answer: Common issues include firewall restrictions blocking port 9090, SELinux policies interfering, or the Cockpit service not running. Verifying these settings typically resolves access problems.

5. Is Cockpit secure to use?

Answer: Cockpit uses HTTPS for encrypted communication and requires valid user credentials. For enhanced security, ensure the system is updated and limit access to trusted networks or users.

Final Thoughts

Installing Cockpit on CentOS 7 provides you with a powerful, user-friendly web interface for managing your server. In this guide, we covered installing Cockpit, enabling the service, and accessing the dashboard to perform system monitoring and administrative tasks.

With Cockpit up and running, you now have an easy and efficient way to manage your server’s resources, users, services, and performance, all from a browser. To keep your server secure and stable, make sure to regularly update Cockpit and apply best practices for system administration.

Optimize your cloud infrastructure and secure your servers with my AWS and Linux administration services. Let’s ensure your systems run smoothly. Connect with me on Fiverr now!

Looking for something?

One response to “How to install Cockpit on CentOS 7”

  1. linuxbuz Avatar

    Good tutorial. Keep it up.

Leave a Reply