Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes related to build an agent from sources. #6973

Merged
merged 2 commits into from
Jan 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ The Wazuh agent is a single and lightweight monitoring software. It is a multi-p

.. group-tab:: AIX

AIX 6.1 TL4 or greater is the supported version for the following installation procedure.
AIX 6.1 TL9 or greater is the supported version for the following installation procedure.

.. note::

Expand Down Expand Up @@ -468,7 +468,7 @@ The Wazuh agent is a single and lightweight monitoring software. It is a multi-p
# cd src
# gmake clean-deps
# gmake clean
# gmake deps TARGET=agent RESOURCES_URL=http://packages.wazuh.com/deps/15
# gmake deps TARGET=agent RESOURCES_URL=http://packages.wazuh.com/deps/27
# gmake TARGET=agent USE_SELINUX=no PREFIX=/var/ossec

#. Run the ``install.sh`` script. This will run a wizard that will guide you through the installation process using the Wazuh sources:
Expand Down Expand Up @@ -612,7 +612,7 @@ The Wazuh agent is a single and lightweight monitoring software. It is a multi-p
.. code-block:: console

# cd wazuh-|WAZUH_CURRENT_FROM_SOURCES|
# /usr/local/bin/gmake -C src deps RESOURCES_URL=http://packages.wazuh.com/deps/14 TARGET=agent
# /usr/local/bin/gmake -C src deps RESOURCES_URL=http://packages.wazuh.com/deps/27 TARGET=agent
# /usr/local/bin/gmake -C src TARGET=agent USE_SELINUX=no

#. Run the ``install.sh`` script. This will run a wizard that will guide you through the installation process using the Wazuh sources:
Expand Down Expand Up @@ -799,7 +799,7 @@ The Wazuh agent is a single and lightweight monitoring software. It is a multi-p
# export LD_LIBRARY_PATH=/usr/local/gcc-5.5.0/lib
# cd wazuh/src
# gmake clean
# gmake deps TARGET=agent RESOURCES_URL=http://packages.wazuh.com/deps/15
# gmake deps TARGET=agent RESOURCES_URL=http://packages.wazuh.com/deps/27
# gmake -j 4 TARGET=agent PREFIX=/var/ossec USE_SELINUX=no
USE_BIG_ENDIAN=yes
# cd ..
Expand Down Expand Up @@ -910,7 +910,7 @@ The Wazuh agent is a single and lightweight monitoring software. It is a multi-p

.. code-block:: console

# pkgutil -y -i git gmake cmake gcc5core gcc5g++
# /opt/csw/bin/pkgutil -y -i git gmake cmake gcc5core gcc5g++

#. Install a gcc version to include all files needed in the next step:

Expand Down
Loading