We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am working with the AWS Elastic Search service. When trying to create an index on my local windows development environment it returns the error
No alive nodes found in your cluster
This sounded similar to #993 and I applied the fix suggested there so that the port is passed to the request, but the error remains.
This issue only occurs on my local machine, on the remote staging site it works fine.
$client = Elasticsearch\ClientBuilder::create() ->setHosts( [ 'https://search-xxx-xxxxxxxxxxxxxx.eu-west-2.es.amazonaws.com:443' ] ) ->build(); $client->indices()->create( [ 'index' => 'test' ] );
The equivalent unathenticated cURL request works:
curl -X PUT "https://search-xxx-xxxxxxxxxxxxxx.eu-west-2.es.amazonaws.com:443/test"
The text was updated successfully, but these errors were encountered:
Related to certificate issue, now resolved
Sorry, something went wrong.
@jhob101 How did you resolve the certificate issue?
No branches or pull requests
Summary of problem or feature request
I am working with the AWS Elastic Search service. When trying to create an index on my local windows development environment it returns the error
No alive nodes found in your cluster
This sounded similar to #993 and I applied the fix suggested there so that the port is passed to the request, but the error remains.
This issue only occurs on my local machine, on the remote staging site it works fine.
The equivalent unathenticated cURL request works:
curl -X PUT "https://search-xxx-xxxxxxxxxxxxxx.eu-west-2.es.amazonaws.com:443/test"
System details
The text was updated successfully, but these errors were encountered: