Linux

Cockpit Ubuntu Install Configuration and Apps

Learn how to install Cockpit on Ubuntu and its management capabilities. You can manage your Linux host with this free and open-source web interface tool.

Highlights

  • In case you haven’t seen or heard of it, Cockpit is a web interface management tool you can load in Linux that gives you “point and click” server management capabilities to manage your Linux host, including the ability to easily see logs, network settings, updates, apps, virtualization, system resources, and many other apps.
  • When you install Cockpit on Ubuntu, after the installation process is complete, you can browse the IP or FQDN and append the Cockpit port 9090 to the address.
  • It also provides the ability to use the terminal in a web interface on a machine that has Cockpit installed.

Working with the oVirt Node install recently re-familiarized me with the Cockpit utility and made me want to play around with it a bit more on vanilla Ubuntu Server installations. Let’s look at installing Cockpit on Ubuntu and see the steps involved. We will also look at how you can install new apps in the utility and general configuration.

What is Cockpit?

In case you haven’t seen or heard of it, Cockpit is a web interface management tool you can load in Linux that gives you “point and click” server management capabilities to manage your Linux host, including the ability to easily see logs, network settings, updates, apps, virtualization, system resources, and many other apps.

It is a free and open-source solution that you can easily download and enable Cockpit on a variety of Linux servers. However, for the rest of the blog, we will concentrate on how to install Cockpit on Ubuntu.

Why is Cockpit helpful?

Cockpit is helpful since it adds the ability to have GUI-based web management for your Ubuntu Server/client machines. You can see statistics and configure a few things with the functionality provided by Cockpit.

It also provides the ability to use the terminal in a web interface on a machine that has Cockpit installed. It means you can interface with your server using devices that may not be able to SSH or run SSH client applications, which can definitely be helpful in a pinch.

You can also view and run software updates using Cockpit which can be a nice feature to visually see security and other updates that are needed.

Install Cockpit in Ubuntu

Let’s look at the commands to install the Cockpit package in Ubuntu using terminal access. The command to install it is straightforward:

sudo apt install cockpit

This will install the Cockpit service and system services needed to manage your server using the Cockpit tool.

Once you have installed Cockpit on Ubuntu, you can browse to the Cockpit login screen at the following link:

https://<IP or FQDN>:9090

When you install Cockpit on Ubuntu, after the installation process is complete, you can browse the IP or FQDN and append the Cockpit port 9090 to the address. It should bring up the login page after the Cockpit installation and the Cockpit web server.

The cockpit login on an ubuntu server
The cockpit login on an ubuntu server

Viewing the Cockpit Interface

After logging in, you will see the Cockpit interface. It is an intuitive interface that provides a modern look and feel that most will find straightforward. Viewing the Cockpit overview dashboard that displays the health, usage, system information like disk space, and configuration in the Cockpit dashboard.

Viewing the overview dashboard
Viewing the overview dashboard

You can also view system logs for your Ubuntu Server using Cockpit. This is a great way to have a GUI interface running with your server infrastructure.

Viewing logs in cockpit for ubuntu
Viewing logs in cockpit for ubuntu

Viewing the storage dashboard when you install Cockpit on Ubuntu. it allows you to manage storage on your Ubuntu Server.

Viewing the storage dashboard
Viewing the storage dashboard

Using the terminal application allows having terminal access to your Ubuntu machine through a web browser which is extremely cool.

Launching terminal access using cockpit
Launching terminal access using cockpit

This means, you can access your server using a device that may not be able to run terminal apps locally.

Manage multiple servers

One of the other cool features of Cockpit is that it will allow you to manage multiple servers. The prerequisite on the servers you want to manage is that you have Cockpit packages installed. Let’s step through this process to add another server to a Cockpit web console.

Beginning to add a new host to cockpit
Beginning to add a new host to cockpit

Add the IP or FQDN to the host field and the username you want to use.

Enter the hostname and username for adding servers
Enter the hostname and username for adding servers

In the New Host dialog box, access the key and continue.

Accept the key and continue
Accept the key and continue

Enter the password to login to the remote host. Note you can also configure the Automatic login. You can check the box Create a new SSH key and authorize it.

Enter the password and continue to add a server to cockpit
Enter the password and continue to add a server to cockpit

The new host is added to the Cockpit dashboard.

New server is added to the cockpit console
New server is added to the cockpit console

Adding apps to your Cockpit installation

You can add apps to your Cockpit installation that extend its capabilities. You can view the available apps that can be installed with Cockpit here: Applications—Cockpit Project (cockpit-project.org).

You can install apps in Cockpit using simple apt commands. For example, you can install the Virtualization app using the following command:

apt install cockpit-machines

You can install the Podman app to manage Podman containers:

apt install cockpit-podman

You can also install the oVirt dashboard app using the following command:

apt install cockpit-ovirt-dashboard

Troubleshooting

If you have issues installing Cockpit, you might find the following helpful:

  • You can’t connect to port 9090 after installing Cockpit – You may need to add an exception to your Ubuntu Server firewall using the sudo ufw allow 9090
  • You want to manage virtual machines, and you don’t see the Virtualization app – You need to install the Virtualization app using the command apt install cockpit-machines
  • Cockpit doesn’t start when you reboot your Ubuntu Server – Use the systemctl enable now cockpit.socket
  • You get an error in Ubuntu about being offline, especially when viewing the Software updates dashboard. There is a workaround that is shown here to get you around this issue: Frequently Asked Questions (FAQ) — Cockpit Project (cockpit-project.org).

Wrapping up Cockpit Ubuntu installation

The Cockpit Ubuntu install adds really great features to your Ubuntu server or client so you can access these using a web browser on port 9090. For those that like to have GUI tools for visibility and management of certain system configuration, Cockpit is a great way to do this. As shown, you can extend its built-in features by adding dashboards and you can even access the command line on your server using the terminal app.

Subscribe to VirtualizationHowto via Email 🔔

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Brandon Lee

Brandon Lee is the Senior Writer, Engineer and owner at Virtualizationhowto.com and has over two decades of experience in Information Technology. Having worked for numerous Fortune 500 companies as well as in various industries, He has extensive experience in various IT segments and is a strong advocate for open source technologies. Brandon holds many industry certifications, loves the outdoors and spending time with family. Also, he goes through the effort of testing and troubleshooting issues, so you don't have to.

Related Articles

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.