Posted On June 9, 2020

Administering CentOS 8 with Cockpit

kimconnect 0 comments
blog.KimConnect.com >> Linux >> Administering CentOS 8 with Cockpit

CentOS 8 default installation already has this utility installed. To render it active, one only needs to run this command:

systemctl enable --now cockpit.socket
# Enable the wheel group
sudo sed 's/# %wheel ALL=(ALL:ALL) ALL/%wheel ALL=(ALL:ALL) ALL/' -i /etc/sudoers

To ensure that the admin account is a sudoer, this command would render such user as a member of wheel (administrator)

username=coco
usermod -aG wheel $username

Navigate to https://yourLinuxBox:9090

Modern browsers have safeguards to remind users when a URL doesn’t have a public cert, as this is a known machine in the trusted zone, it’s OK to click on ‘Advanced’ to proceed to https://yourLinuxBox (unsafe)

Creating New Accounts:

Login using the Admin account > simply click on the Accounts Link > Create New Account > follow the wizard

Leave a Reply

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

Related Post

Network Time Protocol for CentOS 8

Check hardware clock [root@sftp testadmin]# hwclock --verbosehwclock from util-linux 2.32.1System Time: 1608158426.341727Trying to open: /dev/rtc0Using…

Linux: How to Create Windows Bootable USB Drive Via CLI

Creating a Linux bootable USB on a GNU/Linux machine is too easy, especially via GUI.…

How to Install Asterisk on Ubuntu

su[enter root password]cd /tempwget apt-get install build-essential wget libssl-dev libncurses5-dev libnewt-dev libxml2-dev linux-headers-$(uname -r) libsqlite3-dev…