-
Notifications
You must be signed in to change notification settings - Fork 25.2k
SecComp fails on CentOS 6 #22899
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
Comments
This is operating as designed, and is documented. Your kernel does not support seccomp. Elasticsearch attempts to utilize seccomp by default (via the setting |
Fair enough, https://www.elastic.co/support/matrix might need an update then. |
No, it doesn't. You can still run Elasticsearch on CentOS 6, and we still support it on CentOS 6. |
Maybe we should suppress the stack trace here, leaving the warning. Maybe even explaining that elasticsearch will still run just fine but doesn't have the extra fork protection. |
I don't think we should suppress the stack trace (there's a few different ways this can fail). We say this in the tail of the logs:
And the bootstrap check docs say this:
|
Well, 'at your own risk' makes you go looking for a way to make system call filters work on CentOS 6, which it can't. You will have all CentOS 6 users setting Just my two cents :) |
Okay, but at least they are aware of the problem whereas they weren't before since we silently failed. |
Hi jasontedor, What is a safer way to disable bootstrap.system_call_filter? |
in elasticsearch.yml memory after config |
Just configure it like you would any other configuration option (e.g., in the elasticsearch.yml). |
same reason brings me here, now that it's a warn... I decide to ignore it lol |
For me it doesnt get the ES started :( |
when i started the sonarqube, i had the same problem. I tried to modify elasticsearch.yml(bootstrap.system_call_filter: false) but there is still the same problem. How can i fix it? |
@Cavielee please ask your question on our discussion forum. We cannot diagnose your issue here, but there are people who can help on the forums. |
Thx, i find the way in the docs |
where is the docs,thks I have the same problem |
the same to me. I found is not system_call_filter done. it's other problem. |
|
CentoOS 6 does not (as far as I can research) support SecComp, but ES tries to use it anyway, and fails to start due to
bootstrap.system_call_filter: true
.The only workaround currently is to disable
bootstrap.system_call_filter
ES 5.2.0
The text was updated successfully, but these errors were encountered: