You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After that I did some tests and I got some warning messages in the Wazuh indexer log at the start of Wazuh indexer when installed on Amazon Linux 2, which have an impact on the OVA as well as on the Wazuh AMI:
I received this error message both during the Installation Assistant installation and in the OVA and the AMI.
I was checking the error and it is due to lack of permissions in the opensearch-security policy, so that the error message does not appear I added permissions within the /etc/wazuh-indexer/opensearch-performance-analyzer/opensearch_security.policy file and it did not appear. I had more problems with this error in the deployment:
Before:
grant {
permissionjava.lang.management.ManagementPermission"control";
permissionjava.net.SocketPermission"localhost:9600","connect,resolve";
permissionjava.lang.RuntimePermission"getClassLoader";
};
After:
grant {
permissionjava.lang.management.ManagementPermission"control";
permissionjava.net.SocketPermission"localhost:9600","connect,resolve";
permissionjava.lang.RuntimePermission"getClassLoader";
permissionjava.lang.RuntimePermission"accessUserInformation";
};
Regarding this warning message, I have not found much, in several forums it is said that it is because the package is close to being deprecated, but I have not found any workaround to solve it.
The text was updated successfully, but these errors were encountered:
set -- "$@" "%{_prefix}/lib/systemd/system/%{name}-performance-analyzer.service"
I would not worry much about this warning. Invoking the securityManager within OpenSearch's startup seems perfectly reasonable. I was unable to find any report about this warning in OpenSearch's forums, so I don't think this represents any problem or risk at all. In either case, the fix will have to arrive from OpenSearch, not us.
Having said so, I conclude there is nothing to do from our side, as everything is known or fixed for 4.9.0. I therefore close this issue.
Description
During the Release 4.8.0 - RC 1 - Specific systems test some errors were found and reported:
wazuh/wazuh#23261 (comment)
wazuh/wazuh-packages#2449
After that I did some tests and I got some warning messages in the Wazuh indexer log at the start of Wazuh indexer when installed on Amazon Linux 2, which have an impact on the OVA as well as on the Wazuh AMI:
1)
I received this error message both during the Installation Assistant installation and in the OVA and the AMI.
I was checking the error and it is due to lack of permissions in the
opensearch-security policy
, so that the error message does not appear I added permissions within the/etc/wazuh-indexer/opensearch-performance-analyzer/opensearch_security.policy
file and it did not appear. I had more problems with this error in the deployment:Before:
After:
2)
For this message I was checking the permissions of the files mentioned in the message and it contains permissions
640
:Checking all the files within the directory, the
*.service
files all have644
permissions, e.g.:I manually corrected the permissions of these files and the warning message did not appear again in the Wazuh indexer log
3)
Regarding this warning message, I have not found much, in several forums it is said that it is because the package is close to being deprecated, but I have not found any workaround to solve it.
The text was updated successfully, but these errors were encountered: