-
Notifications
You must be signed in to change notification settings - Fork 68
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
openssl error #27
Comments
I've overcome this issue by using 8.0.0, yet, now I'm getting an error from kibana FATAL Error: [config validation of [xpack.fleet].enabled]: definition for this key is missing Any clue? |
I'm having the same problem. |
I think I solved the error.
After a bit of reading the files which are used to setup certificate, I realized that it is not our main host which lacks openssl package. The container in which the certificates are supposed to be generated doesn't have openssl package to generate the certs. So I decided to install the openssl package manually by changing the configurations as follows: 1.Open "docker-compose.setup.yml" and comment out the following line:
2.Add below lines right after "certs:" (line 4 I guess):
3.Create a file named "Dockerfile" and write below lines onto it:
4.Your files should look like this:
Dockerfile:
5.Now you can run the following command successfully:
P.S. This is not a best-practice solution and it needs to be optimized, I just came up with this and wanted to help you as well by sharing it.
Hope you got it sorted now!!! |
Or I could simply add |
Hi,
I'm getting the following error when running the step, docker-compose -f docker-compose.setup.yml run --rm certs
"E: Unable to locate package openssl"
if I comment out the "apt-get install unzip openssl -y" in setp/setup.sh, I get "/usr/share/elasticsearch/config/setup.sh: line 127: openssl: command not found"
what am I missing?
thanks
The text was updated successfully, but these errors were encountered: