# Cockpit

![cockpit.jpeg](https://bookstack.timshome.net/uploads/images/gallery/2023-01/scaled-1680-/RcGhUDDsYgaGVK80-cockpit.jpeg)

#### Introduction  


Cockpit is a free and opensource web-based graphical server management tool that allows administrators and Linux users to easily manage and configure their Linux servers/PCs from a browser.

Cockpit is easy to install and simple to use. At a glance, it allows you to perform the following tasks.

- Keep tabs of system metrics and performance
- Create and manage users
- Browse and search system logs
- Inspect and interact with systemd-based services
- Access the terminal and run commands
- Inspect system’s hardware
- Create and manage virtual machines
- Upgrade software packages to their latest versions
- Configure Firewall &amp; and many more.

---

#### Installation

##### Update Local Package Index 

To start off, log into your server and refresh the local package index as follows.

```shell
sudo apt update
```

##### Install Cockpit Web Console 

The Cockpit web console packages are provided by the official Ubuntu repositories. You can verify this by running the following command.

```shell
apt search cockpit
```

So, install Cockpit using the APT package manager as shown.

```shell
sudo apt install cockpit -y
```

The command installs the Cockpit web console alongside other additional packages, libraries, and dependencies.

##### Verify Installation

Once installed, you can verify if cockpit is installed by running the following command:

```shell
apt -qq list cockpit OR $ dpkg -l cockpit
```

##### Optional Packages

If you plan to manage KVM virtual machines with cockpit then install following package:

```shell
sudo apt install cockpit-machines -y
```

By default, Cockpit does not provide support for podman. If you wish to administer and manage podman containers using Cockpit, install the cockpit-podman package which provides support for podman.

```shell
sudo apt install cockpit-podman y
```

##### Starting Cockpit Web Console Service 

Unlike other services or daemons, Cockpit does not start automatically once installed. Therefore, start the Cockpit systemd service as shown.

```shell
sudo systemctl start cockpit
```

Verify that the Cockpit service is running as follows.

```shell
sudo systemctl status cockpit
```

Cockpit listens on TCP port 9090. You can verify this is the case by running the following ss command.

```shell
ss -tunlpe | grep cockpit
```

If the firewall is enabled on your Ubuntu 22.04 system, then allow 9090/tcp port so it’s web console can be accessed from outside.

```shell
sudo ufw allow 9090/tcp
sudo ufw reload
```

##### Access Cockpit Web Console

To access Cockpit Web console, browse the following address, where **server-ip** is the IP address of your server running the cockpit instance.

[https://server-ip:9090 ](https://server-ip:9090)

You may get a warning that the website you are accessing is not private and that you could fall victim to hackers. Do not fret, as this happens since the server is encrypted by a self-signed SSL certificate which is not recognized by CA.

To get around this issue, simply click ‘Advanced’

Then click on ‘Proceed to \[server-ip\]’ link.

You should get the Cockpit login screen, similar to below.

![Screenshot from 2023-03-16 19-49-44.png](https://bookstack.timshome.net/uploads/images/gallery/2023-03/scaled-1680-/2XDPLZqokpxcbYPk-screenshot-from-2023-03-16-19-49-44.png)

---

### Cockpit Issues

#### Known Issues &amp; their Fixes

<div id="bkmrk--4" style="clear: left;">  
</div>![help-660x330-2378825231.jpeg](https://bookstack.timshome.net/uploads/images/gallery/2023-01/scaled-1680-/qk1isE7eLiRZ3UPb-help-660x330-2378825231.jpeg)

#### Issue:

Cannot install any Cockpit add-ons or perform any updates from the UI after installing Cockpit

![Screenshot from 2023-01-27 05-32-40.png](https://bookstack.timshome.net/uploads/images/gallery/2023-01/scaled-1680-/3uiqrI4r7F8kvVxQ-screenshot-from-2023-01-27-05-32-40.png)

If you're here because you're on Cockpit running on Ubuntu 22.04.1 LTS and you can't get the Cockpit Updates functionality to work, here's the answer to get it working.

 ![Screenshot from 2023-01-27 05-29-24.png](https://bookstack.timshome.net/uploads/images/gallery/2023-01/scaled-1680-/KuSTZoCFdJuaq1e5-screenshot-from-2023-01-27-05-29-24.png)

By disabling the network-manager, we can resolve those errors (Yes, It’s more of workaround rather than fix)

**<span class="has-inline-color has-vivid-red-color">Warning:</span>** Do not run these commands on production server, unless you know what you are doing.

Disable network-manager service and stop it immediately, then restart the system

```shell
sudo systemctl disable network-manager.service
sudo systemctl stop network-manager.service
sudo reboot
```

Now, get back to cockpit, errors won’t be there anymore