{% extends "base.html" %} {% block body %} {% set eportal_url = config.PATCHSERVER_URL or (request.headers.get('X-Forwarded-Proto', 'http') + '://' + request.host) %}

Full documentation: https://docs.tuxcare.com/eportal/.

Install KernelCare agent through ePortal

curl -s {{ eportal_url  }}/install-kernelcare | bash
kcarectl --register KEY

Install AlmaCare through ePortal

curl -s {{ eportal_url  }}/install-almacare | bash
almactl --register KEY

Take note: KEY should have enabled AlmaCare or AlmaCare Cybersecurity products.

Setup repo to be able to update existing KernelCare agent through ePortal

curl -s {{ eportal_url }}/set-kernelcare-repo | bash

# rpm based
yum update kernelcare

# deb based
apt-get update
apt-get install kernelcare

Configure host with existing KernelCare agent to fetch patches from ePortal

curl -s {{ eportal_url }}/set-patch-server | bash
kcarectl --register KEY
{% endblock -%}