我有一個帶有Compose.io的Elasticsearch集羣,但無法連接到Elastica Client。這是我的配置:帶集羣的Elastica Client
$elasticaClient = new \Elastica\Client(array(
'servers' => array(
array('host' => 'https://myusername:[email protected]', 'port' => 10050),
array('host' => 'https://myusername:[email protected]', 'port' => 10062)
)
));
$elasticaIndex = $elasticaClient->getIndex('test');
我得到這個錯誤:
無法解析主機 500內部服務器錯誤
如何正確連接到數據庫?
這就是工作,這是從伊戈爾完整的答案代碼: $ elasticaClient =新\彈性曲線\客戶端([ '連接'=> [ [ '運輸'=> 'https' 時, '主機'=> '用戶:**** @ aws-us-east-1-portal3.dblayer.com', '端口'=> 10050, '捲曲'=> [ CURLOPT_SSL_VERIFYPEER =>假, ], ] ], ]); – Siol