SUSE from sources
This guide describes how to install the manager and API for SUSE 12 from source code. In addition, for distributed architectures, you will find some guidance on how to install Filebeat.
Installing Wazuh manager
Install the development tools and compilers. In Linux, this can easily be done using your distribution's package manager:
# zypper install make gcc policycoreutils-python automake autoconf libtool
1.1 Optional. Install the following dependencies only if the installation directory is not
/var/ossec
. Since v3.9.0,make deps
will download a pre-compiled version of CPython, built to be installed in/var/ossec
. Otherwise, it will download a modified version of CPython sources and it will be necessary to compile it.To install the build dependencies of CPython, follow these steps:
# zypper install epel-release yum-utils -y # zypper-builddep python34 -y
Note
The Python version from the previous command may change depending of the OS used to build the binaries. More information in Install dependencies.
Download and extract the latest version:
# curl -Ls https://github.com/wazuh/wazuh/archive/v3.13.6.tar.gz | tar zx
Run the
install.sh
script. This will display a wizard to guide you through the installation process using the Wazuh sources:
Warning
If you want to enable the database output, check out this section before running the installation script.
# cd wazuh-* # ./install.shIf you have previously compiled for another platform, you must clean the build using the Makefile in
src
:# cd wazuh-* # make -C src clean # make -C src clean-deps
When the script asks what kind of installation you want, type
manager
to install the Wazuh manager:
1- What kind of installation do you want (manager, agent, local, hybrid or help)? manager
Note
During the installation, users can decide the installation path. Execute the ./install.sh
and select the language, set the installation mode to manager
, then set the installation path (Choose where to install Wazuh [/var/ossec]
). The default path of installation is /var/ossec
. A commonly used custom path might be /opt
.
Warning
Be extremely careful not to select a critical installation directory if you choose a different path than the default. If the directory already exist the installer will ask if delete the directory or if installing Wazuh inside.
The installer asks if you want to start Wazuh at the end of the installation. If you chosen not to, you can start it later with:
For Systemd:
# systemctl start wazuh-manager
For SysV Init:
# service wazuh-manager startIf you want to confirm that it started:
For Systemd:
# systemctl status wazuh-manager
For SysV Init:
# service wazuh-manager status
Installing Wazuh API
NodeJS >= 4.6.1 is required in order to run the Wazuh API. If you do not have NodeJS installed or your version is older than 4.6.1, we recommend you add the official repository as this has more recent versions.
# curl --silent --location https://rpm.nodesource.com/setup_10.x | bash - # zypper -y install nodejs # npm config set user 0
Download and execute the installation script:
# curl -s -o install_api.sh https://raw.githubusercontent.com/wazuh/wazuh-api/v3.13.6/install_api.sh && bash ./install_api.sh download
Once the process is complete, you can check the service status with:
For Systemd:
# systemctl status wazuh-apiFor SysV Init:
# service wazuh-api status
Note
You can also run an unattended installation for the Wazuh manager and API.
Installing Filebeat
Filebeat is the tool on the Wazuh server that securely forwards alerts and archived events to Elasticsearch.
While Filebeat can be installed from sources, the process is more complex than you may like and it is beyond the scope of Wazuh documentation. We recommend installing Filebeat via repository package.
Next steps
Once you have installed the manager, API and Filebeat (only needed for distributed architectures), you are ready to install Elastic Stack.
Uninstall
To uninstall Wazuh manager and Wazuh API:
# OSSEC_INIT="/etc/ossec-init.conf" # . $OSSEC_INIT 2> /dev/null
Stop the service:
# service wazuh-manager stop 2> /dev/null # service wazuh-api stop 2> /dev/null
Stop the daemon:
# $DIRECTORY/bin/ossec-control stop 2> /dev/null
Remove files and service artifacts:
# rm -rf $DIRECTORY $OSSEC_INIT
Delete the service:
For SysV Init:
# [ -f /etc/rc.local ] && sed -i'' '/ossec-control start/d' /etc/rc.local # find /etc/{init.d,rc*.d} -name "*wazuh" | xargs rm -fFor Systemd:
# find /etc/systemd/system -name "wazuh*" | xargs rm -f # systemctl daemon-reload
Remove users:
# userdel ossec 2> /dev/null # userdel ossecm 2> /dev/null # userdel ossecr 2> /dev/null # groupdel ossec 2> /dev/null