Upgrade a single node AMI or OVA installation of Splunk UBA
Perform the following steps to upgrade a single node AMI or OVA installation of Splunk UBA.
Before you begin
Before upgrading Splunk UBA on a single server, confirm you meet the Upgrade Splunk UBA prerequisites
If you have enabled the integration that sends UBA audit data to Splunk Enterprise Security (ES), preserve the associated certificate before upgrading. For more info on sending audit data to ES see, Send Splunk UBA audit events to Splunk ES. Use the following command to export the certificate:
. /opt/caspida/bin/CaspidaCommonEnv.sh sudo keytool -exportcert -alias "splunk es" -keystore $JAVA_HOME/lib/security/cacerts -rfc -file ~/splunk-es_cacert.pem
Perform UBA upgrade
Ensure that Splunk UBA is running before you upgrade, then perform the following tasks to upgrade Splunk UBA on a single server.
- Obtain the Splunk UBA Software Update and download the file to the home/caspida directory. Select version 5.1.0.1 from the drop-down list. The downloadable archive file is named
splunk-uba-software-upgrade-package_5101.tgz
. - Extract the archive with the following command:
The following files are extracted:
tar xfz /home/caspida/splunk-uba-software-upgrade-package_5101.tgz -C /home/caspida
splunk-uba-software-update-000009-5101.tgz
splunk-uba-software-update-000009-5101.tgz.md5sum
- Extract the software update package in the /home/caspida directory:
tar xfz /home/caspida/splunk-uba-software-update-000009-5101.tgz -C /home/caspida
- Run the following command:
sed -i 's|\\$? -ne 0|\\$? -e 100|g' /home/caspida/patch_uba_5101/bin/utils/patch_uba.sh
- Apply the patch with the following command:
The command installs the new Splunk UBA software, restarts Splunk UBA, and then restarts the data sources.
/home/caspida/patch_uba_5101/bin/utils/patch_uba.sh -p /home/caspida/patch_uba_5101
Re-import the certificate used for sending UBA audit events to Splunk ES
If you have enabled the integration that sends UBA audit data to Splunk Enterprise Security (ES), and you preserved the associated certificate in the Before you begin step, you can now re-import that certificate. Use the following command to re-import the certificate:
. /opt/caspida/bin/CaspidaCommonEnv.sh sudo keytool -import -alias "splunk es" -keystore $JAVA_HOME/lib/security/cacerts -file ~/splunk-es_cacert.pem
Apply security patches on Ubuntu
The Splunk UBA AMI and OVA images use Ubuntu as the operating system. Perform the following tasks to apply the latest security patches to your Ubuntu operating system:
Applying the security patches can take up to one hour.
- Log in to the Splunk UBA server as the caspida user.
- Run the following command to stop Splunk UBA and all services:
/opt/caspida/bin/Caspida stop-all
- Run the following commands to install the latest unattended-upgrades package:
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 6A030B21BA07F4FB sudo apt update sudo apt install unattended-upgrades
If you see the following prompt, select keep the local version currently installed:
What do you want to do about modified configuration file 50unattended-upgrades?
- Run the following command:
sudo apt autoremove
- Edit the
/etc/apt/apt.conf.d/50unattended-upgrades
file and un-comment the following line:Skip this step if you have previously applied security patches to your Ubuntu environment following these instructions.
"${distro_id}:${distro_codename}-security";
Leave all other lines commented out. - Run the following command:
sudo unattended-upgrade -d
- Edit the
/etc/init.d/zookeeper-server
file and changesu
torunuser
in all of the following lines:Skip this step if you have previously applied security patches to your Ubuntu environment following these instructions.
Before:
su -s /bin/bash zookeeper -c "${DAEMON_SCRIPT} start" su -s /bin/bash zookeeper -c "${DAEMON_SCRIPT} stop" su -s /bin/bash zookeeper -c "zookeeper-server-initialize $*"
After:
runuser -s /bin/bash zookeeper -c "${DAEMON_SCRIPT} start" runuser -s /bin/bash zookeeper -c "${DAEMON_SCRIPT} stop" runuser -s /bin/bash zookeeper -c "zookeeper-server-initialize $*"
- Reboot the system:
sudo reboot
- Run the following command to start Splunk UBA and all services:
/opt/caspida/bin/Caspida start-all
Troubleshoot the Ubuntu upgrade
While upgrading Ubuntu some environment specific issues can arise. See the following known issues and how to work around them.
Snapd
You might encounter the following error message if snapd is in an unexpected state:
FileNotFoundError: [Errno 2] No such file or directory: 'snap'
Workaround steps:
- Remove and purge the snapd package:
sudo apt purge snapd
- Reinstall the snapd package:
sudo apt install snapd
- Re-run the
upgrade_ubuntu.sh
script.
Zookeeper server missing
You might encounter the following error if zookeeper is upgraded to a newer version, causing the removal of the zookeeper-server:
Can't select installed nor candidate version from package 'zookeeper-server' as it has neither of them
Workaround steps:
Skip holding this package.
- Open and edit
/opt/caspida/upgrade/utils/upgrade_ubuntu.sh
using a text editor. - Modify line 177 from the following:
CMD="apt-mark hold zookeeper zookeeper-server redis-server redis-tools"
To appear as follows:
CMD="apt-mark hold redis-server redis-tools"
- As applicable, repeat for all nodes in your cluster.
- Re-run the
upgrade_ubuntu.sh
script.
Next steps
Upgrade Splunk UBA prerequisites | Upgrade a single node RHEL installation of Splunk UBA |
This documentation applies to the following versions of Splunk® User Behavior Analytics: 5.1.0.1
Feedback submitted, thanks!