Install Cyberwatch with MicroK8s (deprecated)

  1. Install Cyberwatch:

    For Debian-based distributions:

       sudo install -m 0755 -d /usr/share/keyrings
       curl https://dl.cyberwatch.fr/apt/APT-CYBERWATCH-GPG-KEY | sudo gpg --dearmor -o /usr/share/keyrings/cyberwatch.gpg
       sudo chmod a+r /usr/share/keyrings/cyberwatch.gpg
       echo "deb [signed-by=/usr/share/keyrings/cyberwatch.gpg] https://dl.cyberwatch.fr/apt any main" | sudo tee /etc/apt/sources.list.d/cyberwatch.list > /dev/null
       sudo apt update
       sudo apt install cyberwatch
    

    For Red Hat based distributions:

       sudo yum-config-manager --add-repo https://dl.cyberwatch.fr/rpm/cyberwatch.repo
       sudo dnf install cyberwatch
    
  2. Configure Cyberwatch:

    sudo cyberwatch configure
    

    A login and password will be prompted by the script. These credentials are available in the section Docker Credentials on the Cyberwatch license generated for you.

    The first start of Cyberwatch can take few minutes because all the containers images needs to be pulled. To monitor the status of the containers, use the following command:

    sudo cyberwatch status
    
  3. When all the pods are in the Running state, register the admin user on the web interface.


Back to top