Install Sentinel Runtime
Objectives
-
Setting up a Meridian Sentinel running on one of the following Operating Systems
-
Secure access with encrypted passwords to the Karaf shell
-
Sentinel can be configured with the Karaf Shell from the server via
ssh admin@localhost -p 8301
-
Sentinel is running as user
sentinel
without root permissions
Requirements
-
Linux physical server or a virtual machine running a supported Linux operating system
-
Internet access to download the installation packages
-
Ensure DNS is configured so that
localhost
and your server’s host name are resolved properly -
Meridian Core instance runs on latest stable release
-
Java OpenJDK 11 is installed
-
System user with administrative permissions (
sudo
) to perform the installation tasks
Time synchronization is a critical part of operating a monitoring system. Ensure you have a functional time synchronization process running with your operating system. If you are not familiar with this topic, the knowledgebase article Ensure time synchronization for your OpenNMS components is a good starting point. |
Installing the Sentinel package
sudo dnf -y install java-11-openjdk-headless
cat << EOF | sudo tee /etc/yum.repos.d/opennms-meridian.repo
[meridian]
name=Meridian for Red Hat Enterprise Linux and CentOS
baseurl=https://REPO_USER:REPO_PASS@meridian.opennms.com/packages/2023/stable/rhel9(1)
gpgcheck=1
gpgkey=http://yum.opennms.org/OPENNMS-GPG-KEY
EOF
sudo rpm --import https://yum.opennms.org/OPENNMS-GPG-KEY
1 | Replace the REPO_USER and REPO_PASS with your Meridian subscription credentials. |
sudo dnf -y install {package-prefix}-sentinel
Disable the OpenNMS Meridian repository after installation to prevent unwanted upgrades when upgrading other packages on the server. After upgrading, Meridian requires manual steps to upgrade configuration files or migrate database schemas to a new version. For this reason, it is recommended to exclude the Meridian packages from updates except when you are planning on performing an upgrade. |
sudo dnf config-manager --disable meridian
sudo dnf -y install tree
tree /opt/sentinel -L 1
/opt/sentinel
├── bin
├── COPYING
├── deploy
├── etc
├── lib
└── system
sudo systemctl enable --now sentinel
sudo dnf -y install java-11-openjdk-headless
cat << EOF | sudo tee /etc/yum.repos.d/opennms-meridian.repo
[meridian]
name=Meridian for Red Hat Enterprise Linux and CentOS
baseurl=https://REPO_USER:REPO_PASS@meridian.opennms.com/packages/2023/stable/rhel8(1)
gpgcheck=1
gpgkey=http://yum.opennms.org/OPENNMS-GPG-KEY
EOF
sudo rpm --import https://yum.opennms.org/OPENNMS-GPG-KEY
1 | Replace the REPO_USER and REPO_PASS with your Meridian subscription credentials. |
sudo dnf -y install {package-prefix}-sentinel
Disable the OpenNMS Meridian repository after installation to prevent unwanted upgrades when upgrading other packages on the server. After upgrade, Meridian requires manual steps to upgrade configuration files or migrate database schemas to a new version. For this reason, it is recommended to exclude the Meridian packages from update except when you are planning on performing an upgrade. |
sudo dnf config-manager --disable meridian
sudo dnf -y install tree
tree /opt/sentinel -L 1
/opt/sentinel
├── bin
├── COPYING
├── deploy
├── etc
├── lib
└── system
sudo systemctl enable --now sentinel
sudo yum -y install java-11-openjdk-headless
cat << EOF | sudo tee /etc/yum.repos.d/opennms-meridian.repo
[meridian]
name=Meridian for Red Hat Enterprise Linux and CentOS
baseurl=https://REPO_USER:REPO_PASS@meridian.opennms.com/packages/2023/stable/rhel7(1)
gpgcheck=1
gpgkey=http://yum.opennms.org/OPENNMS-GPG-KEY
EOF
sudo rpm --import https://yum.opennms.org/OPENNMS-GPG-KEY
1 | Replace the REPO_USER and REPO_PASS with your Meridian subscription credentials. |
sudo yum -y install {package-prefix}-sentinel
Disable the OpenNMS Meridian repository after installation to prevent unwanted upgrades when upgrading other packages on the server. After upgrade, Meridian requires manual steps to upgrade configuration files or migrate database schemas to a new version. For this reason, it is recommended to exclude the Meridian packages from update except when you are planning on performing an upgrade. |
sudo yum -y install yum-utils
sudo yum-config-manager --disable meridian
sudo yum -y install tree
tree /opt/sentinel -L 1
/opt/sentinel
├── bin
├── COPYING
├── deploy
├── etc
├── lib
└── system
sudo systemctl enable --now sentinel
Secure Access to Karaf Shell
Change the default user/password admin/admin for the Karaf shell and encrypt it. |
sudo vi /opt/sentinel/etc/org.apache.karaf.jaas.cfg
#
# Boolean enabling / disabling encrypted passwords
#
encryption.enabled = true(1)
#...
encryption.algorithm = SHA-512(2)
1 | Enable password encryption from false to true |
2 | Set a secure encryption algorithm like SHA-512 |
As soon the file is saved, Karaf will immediately encrypt the password in users.properties
.
sudo vi /opt/sentinel/etc/users.properties
# All users, groups, and roles entered in this file are available after Karaf startup
# and modifiable via the JAAS command group. These users reside in a JAAS domain
# with the name "karaf".
#
# OPENNMS: Change the admin user from 'karaf' to 'admin'
admin = {CRYPT}C7AD...{CRYPT},_g_:admingroup(1)
1 | Replace the whole string {CRYPT}C7AD…{CRYPT} with your new password in plaintext.
As soon you save the file the password will be SHA-512 encrypted. |
sudo chmod 600 /opt/sentinel/etc/users.properties
Password or encryption algorithm changes happen immediately. It is not required to restart the Sentinel. |
By default the Karaf Shell is restricted to 127.0.0.1.
If you want enable remote access, set sshHost=0.0.0.0 in org.apache.karaf.shell.cfg .
The change is applied immediately and a Sentinel restart is not required.
If you have a firewall running on your host, allow 8301/tcp to grant access to the Karaf Shell.
|
Set up flow processing
Once you have Sentinel installed, see scale flows data to setup flow processing.